可学答题网 > 问答 > 1Z0-007题库
目录: 标题| 题干| 答案| 搜索| 相关
问题

Exhibit Examine the data in the EMPL


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?()

  • A SELECT last_name, manager_id, department_name FROM employees e FULL OUTER JOIN department d ON (e.department_id = d.department_id);
  • B SELECT e.last_name, m.last_name, department_name FROM employees e LEFT OUTER JOIN employees m on ( e.managaer_id = m.employee_id) LEFT OUTER JOIN department d ON (e.department_id = d.department_id);
  • C SELECT e.last_name, m.last_name, department_name FROM employees e RIGT OUTER JOIN employees m on ( e.manager_id = m.employee_id) FULL OUTER JOIN department d ON (e.department_id = d.department_id);
  • D SELECT e.last_name, m.last_name, department_name FROM employees e LEFT OUTER JOIN employees m on ( e.manager_id = m.employee_id) RIGT OUTER JOIN department d ON (e.department_id = d.department_id);
  • E SELECT e.last_name, m.last_name, department_name FROM employees e RIGHT OUTER JOIN employees m on ( e.manager_id = m.employee_id) RIGHT OUTER JOIN departments d ON (e.department_id = d.department_id)
  • F SELECT last_name, manager_id, department_name FROM employees e JOIN department d ON (e.department_id = d.department_id)
参考答案
参考解析:
分类:1Z0-007题库
相关推荐

1、Examine the data from the ORDERS and

Examine the data from the ORDERS and CUSTOMERS tables.Evaluate the SQL statement:What is the result when the query is executed?()ABCD The quer...

2、Examine the data from the EMP table:

Examine the data from the EMP table:EMP_ID DEPT_ID COMMISSION1 10 5002 20 10003 104 10 6005 30 8006 30 2007 108 20 300The COMMISSION column ...

3、Examine the data in the EMPLOYEES and

Examine the data in the EMPLOYEES and EMP_HIST tables:The EMP_HIST table is updated at the end of every year. The employee ID, name, job ID,...

4、Examine the data from the ORDERS and

Examine the data from the ORDERS and CUSTOMERS tables.ORDERSORD_ID ORD_DATE CUST_ID12-JAN-100 15 1000009-MAR-101 40 800009-MAR-102 35 1250015-MAR-103...

5、Examine the data in the EMPLOYEES tab

Examine the data in the EMPLOYEES table:Which three subqueries work? ()A SELECT * FROM employees where salary > (SELECT MIN(salary) FROM emplo...

6、View the Exhibit and examine the Data

View the Exhibit and examine the Data Pump architecture. Identify the numbered components.()A 1 - Oracle Loader, 2 - Oracle Data Pump, 3 - ...