I\'m curious which of the following below would be more efficient?
I\'ve always been a bit cautious about using IN because I believe SQL Server turns th
IN
EXISTS will be faster because once the engine has found a hit, it will quit looking as the condition has proved true.
EXISTS
With IN, it will collect all the results from the sub-query before further processing.