显示佣金不为空或者部门号为 20 的雇员信息,要求按照薪水降序排列
select * from emp e where e.comm is not null or e.deptno = 20 order by e.sal desc;