课程名称:MySQL8.0零基础入门之从青铜到钻石
课程章节:结果排序
课程讲师:欧阳熊猫
课程内容:结果查询:
使用order by语句
语法:select 字段名 from 表名 where 字段=值 order by 字段名 asc/desc
asc升序
desc降序
单列排序
select * from 表名 where 条件 order by 字段 asc/desc;
条件:就是需要的范围
字段:就是按照哪个字段来去排序
组合排序
select 字段 from 表名 where 字段=值 order by 字段1asc/desc ,字段2 asc/desc