SQL order by 两个字段排序

select * from emp;

 

--先按照sal排序,如果sal相同,就按照deptno排序

select * from emp order by sal, deptno;

 

--先按照deptno排序,如果deptno相同,就按照sal排序

select * from emp order by deptno, sal;

 

--先按照deptno降序,如果deptno相同,按照sal升序排序

select * from emp order by sal desc, deptno;

你可能感兴趣的:(order by)