mysql聚合函数
Posted 花有重开日,人无再少年
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql聚合函数相关的知识,希望对你有一定的参考价值。
聚合函数的操作 count(*)、max()、min()、avg()、sum()
select count(*) from student; 打印student表里的总个数,总人数
select count(*) from student where gender = ‘女‘; 打印student表格里女生的人数
select max(age) from student; 打印student表格里最大的年龄值
select min(age) from student where gender = ‘女‘; 打印student表格里女生的最小年龄值
select sum(age) from student; 打印student表格里年龄累加的和
select avg(age) from student; 打印student表格里平均年龄,显示浮点数
以上是关于mysql聚合函数的主要内容,如果未能解决你的问题,请参考以下文章