数据表 需求 查询一个员工的名字和对应领导名字 # 第一种方式 select e.ename, t.ename from emp e, (select * from emp) t where e.mgr = t.empno # 第二种方式 select