Zitat von
Blup:
Die Feldliste im Select muss nicht alle Felder aus dem GroupBy enthalten.
Ob das sinnvoll ist, ist eine andere Frage.
Äh warum? Wodurch ist das begründet?
SQL-Code:
select 'dummy',substr(coddos,1,1),count(idedos)
from tabdos
group by substr(coddos,1,1)
das funktioniert, aber wohl nur wenn es sich um eine Konstante ('dummy') handelt!?
Hier gibt's Mecker:
SQL-Code:
select substr(coddos,1,1),count(idedos)
from tabdos
where substr(coddos,1,1)='H'
Gruß
K-H