While reading some SQL Tuning-related documentation, I found this:
SELECT COUNT(*) :
SELECT COUNT(*)
I'm using this way:
IIF(EXISTS (SELECT TOP 1 1 FROM Users WHERE FirstName = 'John'), 1, 0) AS DoesJohnExist