count(1),count(*),order by 1,2,3,4 区别
程序员文章站
2022-04-20 19:03:12
...
有图有真相 上图 1 制造NULL数据; 2 直接用列名来COUNT下看结果 3 用 1 2 3 4 5 * 来COUNT 下看下结果 发现都是一样的数据 都是等于全部函数. 4 ORDER BY 1 确实使用第一列来排序 5 ORDER BY 2 看看 结果正确 结果: count(1)=count(2)=count(3)=count(*); co
有图有真相 上图
1 制造NULL数据;
2 直接用列名来COUNT下看结果
3 用 1 2 3 4 5 * 来COUNT 下看下结果 发现都是一样的数据 都是等于全部函数.
4 ORDER BY 1 确实使用第一列来排序
5 ORDER BY 2 看看 结果正确
结果:
count(1)=count(2)=count(3)=count(*);
count(provcode)count(areacode)count(statedate)count(*);
order by 1order by 2 oreder by 3;
order by 1=orderby provcode
附加结果:
推荐阅读
-
select count()和select count(1)的区别和执行方式讲解
-
MySQL数据库Group by分组之后再统计数目Count(*)与不分组直接统计数目的区别
-
select count(1)和select count(*)的区别
-
Sql server 中count(1) 与 sum(1) 那个更快?
-
Sql server 中count() 与 sum() 的区别
-
count(1)、count(*)与count(列名)的执行区别
-
SQL基础教程之count(*)和count(colName)的区别介绍
-
DataGridView中的rows.Count比实际行数多1的原因以及解决办法
-
Leetcode1-100: 38. Count and Say
-
整理测试count(1)、count(*)以及count(列)的区别