How to display the names of all the employees who are working as clerks and drawing a salary more than 3000?
SELECT ename FROM emp WHERE job=’CLERK’ AND 12*(sal+NVL(comm,0))>3000;