hab mir so geholfen

Code:
with a as ( select min(Lfdnr-Feld) as m1 from datei where ...),
     b as ( select min(Lfdnr-Feld) as m1 from datei where ...
                and LfdNr-Feld not in (select m1 from a))
select * from datei where LfdNr-Feld in(select m1 from a) or
                          Lfdnr-Feld in(select m1 from b)
wusste erst nicht, das da eine Lfdnr drin ist.
Gibt es dann auch ne einfache Möglichkeit?