Hi all
Is it possible to have a query like this (I'm getting error) :
SELECT ColumnA FROM Table1
EXCEPT
SELECT ColumnB FROM Table2
WHERE Table1.ColumnC = Table2.ColumnC
SQL can't bind the Table1.colmnC in my where clause . is there any way to run this query ? or another way to get the same result ? I know that I can do this using temp tables or ... but I want to do it with a set operation .
thanks