数据库

1.排序查询:

select  查询列表  from 表 【where 筛选条件】order by 排序列表【asc(低到高)|desc(高到低)】

select * from employees order by salary desc;高到低(降序)

select * from employees order by salary asc;低到高(升序)

不写默认是升序;

posted @ 2022-04-12 21:59  ping不通a  阅读(13)  评论(0编辑  收藏  举报