How to display the employee name and annual salary for all employees including commission?
SELECT ename, 12*(sal+NVL(comm,0)) AS “annual Sal” FROM emp;