nerdexam
Oracle

1Z0-071 · Question #53

Examine the structure of the employees table. There is a parent/child relationship between EMPLOYEE_Id and MANAGER_ID. You want to display the last names and manager IDs of employees who work for…

The correct answer is B. SELECT e.last_name, m.manager_id. See the full explanation below for the reasoning.

Question

Examine the structure of the employees table. There is a parent/child relationship between EMPLOYEE_Id and MANAGER_ID. You want to display the last names and manager IDs of employees who work for the same manager asthe employee whose EMPLOYEE_ID is 123. Which query provides the correct output?

Exhibit

1Z0-071 question #53 exhibit

Options

  • ASELECT e.last_name, m.manager_id
  • BSELECT e.last_name, m.manager_id
  • CSELECT e.last_name, e.manager_id
  • DSELECT m.last_name, e.manager_id

How the community answered

(20 responses)
  • B
    85% (17)
  • C
    5% (1)
  • D
    10% (2)

Community Discussion

No community discussion yet for this question.

Full 1Z0-071 Practice