Bei mir geht es uneter Firebird 2.1 auch:
Code:
select
t1.ID,
t1.KUNDE,
t1.NUMMER,
t2.STATUS
from TABELLE1 t1
left join TABELLE2 t2 on (t2.TABELLE1_ID = t1.ID)
where (t2.STATUS like '1')
Ergebnis:
ID KUNDE NUMMER STATUS
2 b 200 1
3 c 300 1
6 xyz 600 1