用两种方式根据部门号从高到低,工资从低到高列出每个员工的信息。

SQL数据库浏览:657收藏:1
答案:
employee: eid, ename, salary, dept_id
select * from employee order by dept_id desc, salary;