Oracle
1Z0-007 · Question #118
Exhibit Examine the data in the EMPLOYEES and DEPARTMENTS tables. You want to retrieve all employees' last names, along with their manager's last names and their department names. Which query would…
The correct answer is B. SELECT e.last_name, m.last_name, department_name FROM employees e. See the full explanation below for the reasoning.
Question
Exhibit Examine the data in the EMPLOYEES and DEPARTMENTS tables. You want to retrieve all employees' last names, along with their manager's last names and their department names. Which query would you use?
Exhibit
Options
- ASELECT last_name, manager_id, department_name FROM employees e
- BSELECT e.last_name, m.last_name, department_name FROM employees e
- CSELECT e.last_name, m.last_name, department_name FROM employees e
- DSELECT e.last_name, m.last_name, department_name
- ESELECT e.last_name, m.last_name, department_name
- FSELECT last_name, manager_id, department_name
How the community answered
(27 responses)- A7% (2)
- B85% (23)
- C4% (1)
- F4% (1)
Community Discussion
No community discussion yet for this question.
