I want to make sure I\'m using them for the correct occasion and want to know of any subtleties. They seem to function the same way, which is to check to see if a object fi
SELECT COUNT(*) would scan the records to get a count.
SELECT COUNT(*)
SELECT 1 would stop after the first match, so their exec time would be very different.
SELECT 1