Featured Post

What is the purpose of the php.ini file?

  The PHP configuration file,   php.ini , is the final and most immediate way to affect PHP's functionality. The php.ini file is read ea...

Display the Empno, Ename, job, Hiredate, Exp of all Mgrs

Answer:

select empno,ename ,job,hiredate, months_between(sysdate,hiredate) exp from emp where empno in (select mgr from emp);

No comments:

Post a Comment

Popular Posts