Viewing 2 posts - 1 through 2 (of 2 total)
Would this be slightly better than using "not in" in terms of performance?
select b.guid
from TableB b
left join TableA a ON a.guid = b.guid
where a.guid is null
October 10, 2011 at 12:19 am
#1392268
Not sure if this helps, but it worked for a quick report.... Shouldn't be too difficult to link it to a database to retrieve what colour should appear for...
November 1, 2009 at 2:36 am
#1073565