Viewing 3 posts - 1 through 3 (of 3 total)
after a few tests the solution with the Left Outer Join (DavidBurrows) yields the best performance compared to NOT EXISTS...
SELECT t1.field1,t1.field2,t1.field3 FROM Table1 t1 LEFT OUTER JOIN Table2 t2 ON...
September 25, 2003 at 12:05 am
#475721
NPeeters,
you are right the only way is to make a temp table (with the criteria)
and then JOIN the 2 tables. your solution is working.
Thanks
bill
August 19, 2003 at 6:14 am
#470401
UNION dont work because the number of combinations is not just 2 (perc=30 and numberoftests =2 AND perc=40 and numberoftests =1) but any combination for example
(perc=30 and numberoftests...
August 19, 2003 at 6:03 am
#470398