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 the salary. wherever the commission is null, it is replaced by 0 & added to the salary.