Hi All,
I have two choices when writing a SQL statement with COUNT function.
- SELECT COUNT(*) FROM
- SELECT COUNT(some_column_name) FROM
In terms of performance what is the beast SQL statement? can I obtain some performance gain by using option: 1 ?
Thanks, Upul