SQL is this equvelent to a LEFT JoIn?
Posted
by Jim
on Stack Overflow
See other posts from Stack Overflow
or by Jim
Published on 2010-03-08T20:02:35Z
Indexed on
2010/03/08
20:06 UTC
Read the original article
Hit count: 608
Is this equvelent to a LEFT JOIN?
select distinct a.name, b.name from tableA a, (select name from tableB) as b
It seems as though there is no link between the two tables.
Is there an easier / more efficient way to write this?
© Stack Overflow or respective owner