Which of these queries is the faster?
NOT EXISTS:
SELECT ProductID, ProductName FROM Northwind..Products p WHERE NOT EXISTS ( SELECT 1 FROM
If the execution planner says they're the same, they're the same. Use whichever one will make your intention more obvious -- in this case, the second.