Reputation: 2082
for example can this query
select count(*) from table
return something different than this query:
select count(column) from table
?
Upvotes: 1
Views: 103
Reputation: 223322
COUNT(*)
COUNT(column)
Upvotes: 5