mysql里面的count()函数的问题?

mysql里面的count()函数的问题


MM们
浏览 895回答 3
3回答

慕勒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 值。

斯蒂芬大帝

select count(*) from tables where ~~~~~~~输出后面的条件符合的所有对象的个数

HUWWW

这个是用来输出满足where条件所有的行数。你可以这么些select count('remark') from tablewhere remark not null
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

WebApp