Viewing post 1 (of 1 total)
If you want to use an IN try this?
WHERE RealTableColumn IN (SELECT TempTableColumn FROM TempTable)
EXISTS can be fast too but not sure in this scenario.
WHERE EXISTS (SELECT TempTableColumn FROM TempTable WHERE TempTableColumn...
August 14, 2007 at 7:18 am
#726757