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 Empno, Ename, Sal, Daily sal of all emps in the asc order of Annsal.

Answer:

select empno ,ename ,sal,sal/30,12*sal annsal from emp order by annsal asc;

4 comments:

Popular Posts