慕勒3428872
count() 仅仅是计算行数的.仅仅当你 指定的列名里面, 有存在 NULL 的情况下,会对你的 COUNT 结果有影响。下面是一个例子:1> create table #t123(2> id int,3> val int4> );5> go1> insert into #t123 values(1, null);2> insert into #t123 values(null, 1);3> insert into #t123 values(1, 1);4> go(1 行受影响)1> select count(id), count(val), count(*), count(1) from #t123;2> go----------- ----------- ----------- -----------2 2 3 3警告: 聚合或其他 SET 操作消除了 Null 值。