码迷,mamicode.com
首页 > 其他好文 > 详细

聚合函数

时间:2020-06-14 23:46:25      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:聚合函数   gen   splay   open   技术   sed   函数   sele   计算   

总数
count(*) 表示计算总行数,括号中写星与列名,结果是相同的
例1:查询学生总数

技术图片
1 select count(*) from students;
count

最大值

max(列) 表示求此列的最大值
例2:查询女生的编号最大值

技术图片
1 select max(id) from students where gender=2;
max

最小值

min(列) 表示求此列的最小值
例3:查询未删除的学生最小编号

技术图片
1 select min(id) from students where is_delete=0;
min

求和

sum(列) 表示求此列的和

技术图片
1 例4:查询男生的总年龄
2 select sum(age) from students where gender=1;
3     – 平均年龄
4 select sum(age)/count(*) from students where gender=1;
sum

平均值

avg(列) 表示求此列的平均值
例5:查询未删除女生的编号平均值

技术图片
1 select avg(id) from students where is_delete=0 and gender=2;
avg

 

聚合函数

标签:聚合函数   gen   splay   open   技术   sed   函数   sele   计算   

原文地址:https://www.cnblogs.com/yun---meng/p/13127558.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!