首页/应用软件/内容

SQL的聚合函数与排序

应用软件2022-08-14 阅读()
desc

order by指排序的列,也可以是select后面指定的列名

order by 子句应位于select 语句的结尾

Select name, math from stu order by math;
select name, math+english+chines from stu order by math+english+chines desc;
select name, math+english+chines from stu where name like 'zhang%' order by math+english+chines desc;

2091014-cddde956b411ea7e.png

2091014-9c52af8396187699.png

相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!

推荐阅读:

分页查询的使用详解

JS的日期相关函数使用详解

以上就是SQL的聚合函数与排序的详细内容,更多请关注php中文网其它相关文章!


学习教程快速掌握从入门到精通的SQL知识。



第1页  第2页  第3页  第4页 

……

相关阅读