While reading some SQL Tuning-related documentation, I found this:
SELECT COUNT(*) :
SELECT COUNT(*)
You can use:
SELECT 1 FROM MyTable WHERE... LIMIT 1
Use select 1 to prevent the checking of unnecessary fields.
select 1
Use LIMIT 1 to prevent the checking of unnecessary rows.
LIMIT 1