Ich weiß jetzt nicht ob
FB das kann:
Code:
select a.feld1,b.feld2
from tabelle a
,(select id,feld2 from tabellex) b
where a.id=b.id
Das ist ein ganz normaler Join, oder?! Wo ist bitte der Unterschied zu
Code:
select a.feld1,b.feld2
from tabelle a
,tabellex b
where a.id=b.id
Kann
FB ist aber nicht besonders performant. ( in anderen
DBMS aber auch nicht)
Ich nutze
FB nicht produktiv, aber das kann ich kaum glauben.
Und was hat das mit der Frage des TE zu tun?
Vielleicht habe ich die nicht verstanden.