oracle之排序

来源:互联网 发布:微信群淘宝优惠券提成 编辑:程序博客网 时间:2024/06/03 14:36

按id降序进行排序
select * from users where order by id desc;

按id降序,工资升序 进行排序
select * from users order by id desc,salary asc;