
February 12th, 2003, 12:13 PM
|
|
Contributing User
|
|
Join Date: Feb 2001
Posts: 68
Time spent in forums: < 1 sec
Reputation Power: 13
|
|
|
how do i write this query in ANSI?
ok. i am converting all my old non-ansi sql to sql code and ran across one that i didnt know how to convert in ansi....
select * from table a, table b where a.column(+)=b.column
converts to
select * from table b left outer join a ON (a.column=b.column)
cool..... but what do i do when i have a table that is the strong table on 1 outer join and then the weak table on another? i cant just declare it twice cuz i get table already defined...
how would i convert......
select * from table a, table b, table c
where a.column(+)=b.column AND
b.column(+)=c.column
?
|