A) select * from emp where (sal/30) >100;
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...
Subscribe to:
Post Comments (Atom)
Popular Posts
-
You can find maximum salary for each department by grouping all records by DeptId and then using MAX() function to calculate maximum sala...
-
Answer: select * from emp where hiredate < (’01-jan-81’);
where is exp
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteselect empno, ename, sal, sal/30 daily, months_between(sysdate,hiredate) exp from emp where (sal/30) > 100;
Deleteselect empno, ename, sal, sal/30 daily, months_between(sysdate,hiredate) exp from emp where (sal/30) > 100;
ReplyDeleteThank you very much 😊
Delete
ReplyDeleteselect empno,ename,sal,sal/30 daily_sal,hiredate,(select sysdate from dual) "exp" from emp where sal>100;