Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
In SQL, what's the difference between count(column) and count()?
Count(
) vs Count(1)

I have big tables which keep long texts for example email content or news. And my question is there any difference for performance for counting table rows :

SELECT COUNT(*) FROM table_name

SELECT COUNT(t.id) FROM table_name as t

Which one is better? or the latter one will be optimized by query optimizer? Is there any documentation regarding this?

share|improve this question
1  
Assuming id is a non nullable column (looks like the PK). They should be the same in any decent DBMS – Martin Smith Jan 13 '12 at 15:19
4  
@juergend - COUNT(*) and COUNT(1) are synonyms. But COUNT(id) has different behavior. – Dems Jan 13 '12 at 15:23

marked as duplicate by dasblinkenlight, Martin Smith, JNK, Dems, aF. Jan 13 '12 at 15:26

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 2 down vote accepted

They are different.

COUNT(*) will retrieve all values (even the NULL values count). COUNT(t.id) doesn't count the NULL values.


In terms of performance, they are the same (the query optimizer is smart).

share|improve this answer
1  
In terms of performance they are only categorically the same for non nullable columns. If the column is not nullable then the QO can choose a narrower index that does not even contain the specified column or (for MySQL - can't remember which storage engine) use the cached value that does not require a table access at all. – Martin Smith Jan 13 '12 at 15:24

Query plan looks the same, but in testing, using * is faster (slightly).

Nulls are not taking into account when specifying a column name though.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.