I have two choices when writing an SQL statement with the COUNT function.
COUNT
SELECT COUNT(*) FROM
SELE
Performance should not matter because they do 2 different aggregates
COUNT(*)
COUNT(some_column_name)
some_column_name
See the "Count(*) vs Count(1)" question for more