dann wollen wir mal eine finale lösung vorstellen:
SQL-Code:
select
beschreibung || ' ' || Anzahl
from
(
select
Feld1 || ' ' || substr(Feld2, 1, instr(feld2, 'vom')-1) || ' ' || Zusatz beschreibung,
count(*) anzahl
from
tabelle
group by
Feld1 || ' ' || substr(Feld2, 1, instr(feld2, 'vom')-1) || ' ' || Zusatz
)
wenn man davon ausgeht das in feld2 immer ein datum enthalten ist