1、从emp表中查找每个员工对应的经理人是谁并要求按经理人排序。 SQL>select e1.ename 员工, e2.ename 对应的经理人 from emp e1, emp e2 where e1.mgr = e2.empno order by 对应的经理人;