Viewing post 1 (of 1 total)
-- this is optimized also
select so.* from SalesOrderdetail as so
where so.CustomerID IN (select s.CustomerID from sales as s)
-- SQL TEAM forgets to optimize this
JOIN...
October 21, 2010 at 1:28 am
#1240084