How to display the employee name and annual salary for all employees including commission?

Oracle Apps Interview QuestionsCategory: SQLHow to display the employee name and annual salary for all employees including commission?
Questions Master asked 10 years ago

How to display the employee name and annual salary for all employees including commission?

1 Answers
Shailender Thallam Staff answered 10 years ago

SELECT ename, 12*(sal+NVL(comm,0)) AS “annual Sal” FROM emp;