You could try like this

Code:
select
   ename, (select NVL(MIN(ename),'NO MANAGER') from emp b where b.empno = a.mgr) MANAGER
from emp a