MySQL学习6:常用计算函数
Posted Z|Star
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL学习6:常用计算函数相关的知识,希望对你有一定的参考价值。
常用计算函数
求总数
关键词:count
案例:
1.计算所有记录总数
select count(*) from students;
最大值
关键词:max
案例:
1.计算学生中最大年龄
select max(age) from students;
求和
关键词:sum
案例:
1.计算所有学生的年龄总和
select sum(age) from students;
平均值
关键词:avg
案例:
1.计算所有学生的平均年龄
select avg(age) from students;
四舍五入
关键词:round
案例:
1.计算所有学生的平均年龄,保留2位小数
select round(sum(age)/count(*), 2) from students;
以上是关于MySQL学习6:常用计算函数的主要内容,如果未能解决你的问题,请参考以下文章