select count(id) from table_name;--超过二十秒,没等它跑完
select count() from table_name;--同上
id 是主键,数据库里有很多列,有大量字符串,大概占几个 g 的磁盘。
我比较不理解,为什么只查 id 可以很快,但是对 id 计数就会很慢,如果说 count ()要扫描全表,那 count ( id )不应该只比第一个稍微慢一丢丢么?
count, select, table_name, from
count, select, table_name, from