mysql count(*) 和 count(id) 区别 count(*) 是 sql 规范的写法, 即查询数据行的条数 而 count(id) 表示查询 id 列不为空的数据行, 正常 id 都是主键, 不为空, 所以结果和 count(*) 相同
count(*)
count(id)