• I agree with what you wrote regarding the use of EXISTS being more efficient than using COUNT.

    To take it one notch higher, I always use

    EXISTS (select TOP 1 PrimaryKeyField FROM myTable )

    to use as little data as necessary for the test.