|
|
"Dan Byers" <goofygraffix_at_geemail_dot_com> wrote in message
news:web.47b1b9a1e388923da8d0b25a0@news.povray.org...
> Mike Raiford <mra### [at] hotmailcom> wrote:
> > But, frowned upon in the general sense?
>
> Actually, it's frowned upon where outer joins are concerned. This is from
the
> online manual (SQL Server 2000 - I haven't checked SQL Server 2005 yet):
The older outer join syntax doesn't work at all in SQL 2005. Dunno about the
other DB engines.
(Does Oracle know what a join is yet?) <g>
This works in SQL 2005
SELECT tbl1.Col1, tbl2.col2 from tbl1 LEFT OUTER JOIN tbl2 on tbl1.Col1 =
tbl2.Col1
This doesn't
SELECT tbl1.Col1, tbl2.col2 from tbl1, tbl2 WHERE tbl1.Col1 *= tbl2.Col1
Post a reply to this message
|
|