I don't mean to be so hard IDT, however, you did not read my post.
I am using the old style join...
I gave a simplistic example...
my join is in the where clause...
WHERE p.Parent = c.Parent
I have tried the following that works on other databases
p.parent *= c.Parent
p.parent (+) = c.parent
p.parent *>= c.parent
What works with interbase 5.5.
Main Topics
Browse All Topics





by: idtPosted on 2004-03-25 at 11:50:35ID: 10680636
Select L.fieldOne, R.FieldOne from
LeftTable L left outer join RightTable R
on (L.fieldname=R.fieldname)
where L.field=someval
order by ...
Actually there is no left join, its a left outer join. All the rows from the left table and column from the right where the hoin criteria matches.
Daniel P.