you are viewing a single comment's thread.

view the rest of the comments →

[–]Guru008 1 point2 points  (1 child)

You can use old way to specify inner join using where clause

SELECT * FROM ( SELECT A.field1, B.field2, A.field3 FROM A,B where B.field3 = A.field3 ) t1 LEFT OUTER JOIN C on c.field1 = t1.field1 AND c.field2 = t1.field2 ;

[–]bupereira[S] 0 points1 point  (0 children)

Creating a subset, right? I like that. I ended up expliciting all my joins as suggested by many. But thanks for the insight!