聚合函数
Posted darry-ring
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了聚合函数相关的知识,希望对你有一定的参考价值。
max() 求最大值
min() 求最小值
avg() 求平均值
sum() 求和
count() 求总个数
having 分组之后筛选条件的 一般跟聚合函数连用
order by 排序
desc 降序
asc 升序
select * from employee order by salary desc;
limit 取限定条数
select * from employee order by salary desc limit 2; 开头取两条
select * from employee order by salary desc limit 1,2; 从第二条开始取两条
以上是关于聚合函数的主要内容,如果未能解决你的问题,请参考以下文章