查询出部门ID为41的员工表中工资按从高到低排列显示:

SQL语句:

SELECT last_name, dept_id, salary

FROM s_emp

WHERE dept_id=41

ORDER BY salary DESC;