nerdexam
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

1Z0-007 question #118 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)
  • A
    7% (2)
  • B
    85% (23)
  • C
    4% (1)
  • F
    4% (1)

Community Discussion

No community discussion yet for this question.

Full 1Z0-007 Practice