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
谁更好? 或后者将采用最佳查询方法加以优化? 是否有这方面的文件?