I'm using the following:
SELECT
    COUNT(*)
FROM
    [User]
Where
    Username like '%m%' 
And the results are returned in the same time as the following:
SELECT
    *
FROM
    [User]
Where
    Username like '%m%' 
What's the fastest way to do a conditional count?