标签:set size 均值 blog avg where 表示 求和 count
聚合函数是用来求和,平均值,最大最小值一类的函数。
常用的有COUNT、SUM、MAX、MIN、AVG。
count()
参数为列名,也可以使用*,表示全部列。
默认*会统计所有行的数据,如果想过滤掉NULL行,要指定具体列名。
过滤空行:
mysql> select * from employees where ‘to_date‘ is null;
Empty set (0.00 sec)
标签:set size 均值 blog avg where 表示 求和 count
原文地址:http://www.cnblogs.com/leomei91/p/7640485.html