在sql server 中count(1),count(20000),count(*),count(字段名) ,count('非字段名')区别
主要是对sql中count(number),count(非字段名) 的疑惑
count(1)
这里面的1是什么意思??
其实1就代表你这个查询的表里的第一个字段
这里用1,也是为了方便,
这里用1的话或者用字段名的话,只扫描你写的那个列
count(1)会计算NULL列。
这是网上找来的说话,我并不认同.
但是实测中发现
select count(1) form tableA
select count(0) form tableA
select count(9999) form tableA
select count(10) form tableA
的结果是一样的,
而且不管这个count中的参数,当是数字时,如果是列字段索引,
不管是从0开始,还是从1开始.都始终返回全部记录的计数.包括null值.显示与count(字段名)不一致
所以感觉这个类似是
select 1 from tableA
select 0 from tableA
select 9999 from tableA
select 10 from tableA
相当于先给tableA添加了一列,然后每行的记录是对应的数字
select 1 as cola from tableA
所以count(number),应该就是再把这些记录给计数.返回一个总数来.
那么 ,count(1),count(20000)就是一个意思了.
count(*)和count(字段名)
count(*)的话会所有列扫描,
count(*)会计算NULL列。
count(*)和count(字段名) 基本结果是一样的
但是一种情况例外,就是当某字段名下边的数据有null值的时候,
不计入这个count中,*则全部列入count中
count('非字段名')
同count(number),
相当于先给tableA添加了一列,然后每行的记录是对应的数字
select 1 as cola from tableA
所以count(number),应该就是再把这些记录给计数.返回一个总数来.
示例:
--------------------demo start--------------------------- CREATE TABLE supportContacts ( id int identity primary key, type varchar(20), details varchar(30) ); INSERT INTO supportContacts (type, details) VALUES ('Email', 'admin@sqlfiddle.com'), ('Twitter', '@sqlfiddle'); supportContacts select count(*) from supportContacts select count(1) from supportContacts select count(10000) from supportContacts --abcd不是列中字段 select count('abcd') from supportContacts select count(type_name) from supportContacts --以上查询返回的结果都是2 --用sql server 2000和 2008测试通过.
http://sqlfiddle.com/#!3/1fa93/20032
--------------------demo end---------------------------
我不知道我的理解对不对?求指点......
三国纷争
相关分类