mysql的聚集函数

mysql的聚集函数 

avg()  count() max() min() sum()

avg() 求一个列的平均值 null会被略过

mysql> SELECT AVG(goods_id) as goods_id from club_goods;
+------------+
| goods_id   |
+------------+
| 83987.7589 |
+------------+
1 row in set (0.00 sec)


count() 确定表中行的数据或者符合特定条件的数目 null会被略过 但是空字符串不会被略过

所以 count()里面可以写 一个条件判断语句

mysql> select count(*) as result from test_order;
+----------+
| result  |
+----------+
|        1 |
+----------+
1 row in set (0.00 sec)


max() 返回指定列的最大值 如果是中文的话 则是字符串长度 

mysql> select max(goods_id) as goods_id from club_goods;
+----------+
| goods_id |
+----------+
|   100111 |
+----------+
1 row in set (0.00 sec)

min() 返回指定列的最小值

mysql> select min(goods_id) as goods_id from club_goods;
+----------+
| goods_id |
+----------+
|       38 |
+----------+
1 row in set (0.00 sec)

sum() 用来返回指定列值的和 null 略过  字符串的话直接为0

mysql> select sum(goods_id) from club_goods;
+---------------+
| sum(goods_id) |
+---------------+
|       9406629 |
+---------------+
1 row in set (0.00 sec)


如果是单表 用了聚集函数的就不能在 select 单个字段了  会产生语法错误 可以用其他的聚集函数

但是 可以在聚集函数里面用其他的 算术 或者 选择器的函数 DISTINCT CONACT() ..


你可能感兴趣的:(mysql)