Page 1 of 1

View the Exhibit and examine the description of the EMPLOYEES table.Your company decided to give a monthly bonus of $50

Posted: Wed Jun 07, 2023 6:11 am
by answerhappygod
View the Exhibit and examine the description of the EMPLOYEES table.Your company decided to give a monthly bonus of $50 to all the employees who have completed five years in the company. The following statement is written to display theLAST_NAME,DEPARTMENT_ID, and the total annual salary:SELECT last_name, department_id, salary+50*12 "Annual Compensation" FROM employees WHERE MONTHS_BETWEEN(SYSDATE, hire_date)/12 >= 5;When you execute the statement, the "Annual Compensation" is not computed correctly.What changes would you make to the query to calculate the annual compensation correctly?

A. Change the SELECT clause to SELECT last_name, department_id, salary*12+50 "Annual Compensation".
B. Change the SELECT clause to SELECT last_name, department_id, salary+(50*12) "Annual Compensation".
C. Change the SELECT clause to SELECT last_name, department_id, (salary +50)*12 "Annual Compensation".
D. Change the SELECT clause to SELECT last_name, department_id, (salary*12)+50 "Annual Compensation".