in reply to Re: SQL JOINs vs WHERE statements
in thread SQL JOINs vs WHERE statements
Right outer join:table1.column1 (+) = table2.column2
Full outer join:table1.column1 = table2.column2 (+)
Inner join:table1.column1 (+) = table2.column2 (+)
It isn't the *= syntax, but it is consistent and logical.table1.column1 = table2.column2
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: SQL JOINs vs WHERE statements
by glwtta (Hermit) on Aug 18, 2003 at 20:48 UTC |