SQL查询为什么不推荐使用select count(*)
select count(1)、 count(字段名) 、count(*) 的区别
如果一张表tmp 有10个字段
select * from tmp;
和
select 字段1,字段2,字段3.......字段10 from tmp;
select count(1)、 count(字段名) 、count(*) 的区别
如果一张表tmp 有10个字段
select * from tmp;
和
select 字段1,字段2,字段3.......字段10 from tmp;