查询语句之聚合函数

前端之家收集整理的这篇文章主要介绍了查询语句之聚合函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
sql中常用的聚合函数包含有五个:MAX(最大值)、MIN(最小值)、AVG (平均值)、SUM (和)、COUNT(数量

1、男学生出生日期的最大值和最小值:
SELECT select max(sBirthday),min(sBirthday) from student where sSex='男'


2、平均成绩
select avg(english) from score

3、查询学生表中的学生平均年龄,并添加别名
select AVG(sAge) as 平均年龄 from student 

4、sum函数求和
select sum(sAge) as 年龄和 from student 

5、count求个数和
select count(*) as 总人数 from student 

注 :
聚合函数不能出现在Where字句中
原文链接:https://www.f2er.com/javaschema/286797.html

猜你在找的设计模式相关文章