In first query I am getting result back.Second query should get the same data back (just different syntax). I can't see where my error is, but my second query is not returning any result back.Pleae help
1.select a.lastname
from Table1 a Left join table2 b
On a.lastname=b.last
2. select a.lastname
from Table1 a
where NOT EXISTS (select last from table2 )
1.select a.lastname
from Table1 a Left join table2 b
On a.lastname=b.last
2. select a.lastname
from Table1 a
where NOT EXISTS (select last from table2 )