Can anyone please tell why is this error popping? Is there something wrong in my code?
Which Manager (ename) works only with employees who don't have the same job as he has?
Select e.ename
from emp e
where e.job = "MANAGER"
and e.mgr not in (select empno from emp where job = "MANAGER")
Error in query: FEHLER: Spalte >>MANAGER<< existiert nicht LINE 1: Select e.ename from emp e where e.job = "MANAGER" and e.mgr ...
Image: