Valid 1z0-061 Dumps shared by ExamDiscuss.com for Helping Passing 1z0-061 Exam! ExamDiscuss.com now offer the newest 1z0-061 exam dumps, the ExamDiscuss.com 1z0-061 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 1z0-061 dumps with Test Engine here:
View the Exhibit and examine the structures of the employees and departments tables. You want to update the employees table as follows: -Update only those employees who work in Boston or Seattle (locations 2900 and 2700). -Set department_id for these employees to the department_id corresponding to London (location_id 2100). -Set the employees' salary in iocation_id 2100 to 1.1 times the average salary of their department. -Set the employees' commission in iocation_id 2100 to 1.5 times the average commission of their department. You issue the following command: What is the outcome?
Correct Answer: B
Explanation/Reference: Not that employees is used both in the first line (UPDATE employees) and later (FROM employees, departments). This would not cause the correct output. Instead aliases should be use. The following would be the correct query: UPDATE employees a SET department_id (SELECT department_id FROM departments WHERE location_id = '2100'), (salary, commission_pct) (SELECT 1.1*AVG(salary), 1.5*AVG(commission_pct) FROM employees b WHERE a.department_id = b.department_id) WHERE department_id IN (SELECT department_id FROM departments WHERE location_id = 2900 OR location_id = 2700); Reference: http://docs.oracle.com/database/121/SQLRF/statements_10008.htm#SQLRF01708