DEVFYI - Developer Resource - FYI

What does the following query do?

PL/SQL Interview Questions and Answers


(Continued from previous question...)

What does the following query do?

SELECT SAL + NVL(COMM,0) FROM EMP;?
This displays the total salary of all employees. The null values in the commission column will be replaced by 0 and added to salary.

(Continued on next question...)

Other Interview Questions