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...

List the emps along with their Exp and Daily Sal is more than Rs.100.


A) select * from emp where (sal/30) >100;

6 comments:

  1. This comment has been removed by the author.

    ReplyDelete
    Replies
    1. select empno, ename, sal, sal/30 daily, months_between(sysdate,hiredate) exp from emp where (sal/30) > 100;

      Delete
  2. select empno, ename, sal, sal/30 daily, months_between(sysdate,hiredate) exp from emp where (sal/30) > 100;

    ReplyDelete
    Replies
    1. Thank you very much 😊

      Delete

  3. select empno,ename,sal,sal/30 daily_sal,hiredate,(select sysdate from dual) "exp" from emp where sal>100;

    ReplyDelete

Popular Posts