Table structure Example:
Id, Integer (PK)
Name, Varchar(100)
Description, Text
I need to know if there is a performance difference between:
SELECT COUNT(*) FROM Example;
and
SELECT COUNT(Id) FROM Example;
Or are there no differences?
Cesar source
share