列出受雇日期早于其上级的所有员工的编号、姓名、部门名称
select e.empno,e.ename,d.dname
from emp e , emp m , dept d
where e.mgr=m.empno and
e.hiredate<m.hiredate and
e.deptno=d.deptno;
请问where中的第二个and之后的那句 e.deptno=d.deptno;
中的e 是代表,e.mgr=m.empno and e.hiredate<m.hiredate 计算后的表
还是代表 emp原表?