I\'m trying to find the most efficient way to determine if a table row exists.
I have in mind 3 options:
SELECT EXISTS(SELECT 1 FROM table1 WHERE so
Exists is faster because it will return the number of results that match the subquery and not the whole result.