Like this:
select * from table1 COLLATE SQL_Latin1_General_Cp1_CS_AS where field1 not in (select field2 from table2)
I've already re-written the query using a left outer join to pull the correct results but was wondering if it is possible to collate when selecting two tables.
select * from table1 COLLATE SQL_Latin1_General_Cp1_CS_AS where field1 not in (select field2 from table2)
I've already re-written the query using a left outer join to pull the correct results but was wondering if it is possible to collate when selecting two tables.