其他分享
首页 > 其他分享> > DQL排序查询和DQL聚合函数

DQL排序查询和DQL聚合函数

作者:互联网

DQL:查询语句
排序查询
语法:
order by 字句
order by 排序字段1 排序方式1,排序字段2 排序方式2...
排序方式:
ASC:升序,默认的
DESC:降序

SELECT * FROM student ORDER BY math DESC;

image

SELECT * FROM student ORDER BY math ASC;

image

按照数学成绩排名,如果数学成绩异常,则按照英语成绩排名

SELECT * FROM student ORDER BY math ASC , english ASC;

image

注意:如果有多个排序条件,则当前边的条件值一样的时候,才会判断第二条件。

聚合函数

聚合函数:将一列数据作为一个整体,进行纵向的计算
1.count:计算个数

select count(*) from student;

image

2.max:计算最大值

select max(math) from student;

image

3.min:计算最小值

select min(math) from student;

image

4.sum:计算和

select sum(math) from student;

image

5.avg:计算平均值

select avg(math) from student;

image

注意:聚合函数的计算或排除null值
解决方案:
1.选择不包含非空的列进行计算
2.ifnull函数

标签:聚合,计算,ASC,math,student,DQL,排序,select
来源: https://www.cnblogs.com/ailhy/p/16513928.html