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

Examine the data in the EMPLOYEES and


Examine the data in the EMPLOYEES and DEPARTMENTS tables: Also examine the SQL statements that create the EMPLOYEES and DEPARTMENTS tables: On the EMPLOYEES table, EMPLOYEE_ID is the primary key. MGR_ID is the ID of managers and refers to the EMPLOYEE_ID. DEPT_ID is foreign key to DEPARTMENT_ID column of the DEPARTMENTS table. On the DEPARTMENTS table, DEPARTMENT_ID is the primary key. Examine this DELETE statement: What happens when you execute the DELETE statement?()

  • A Only the row with department ID 40 is deleted in the DEPARTMENTS table.
  • B The statement fails because there are child records in the EMPLOYEES table with department ID 40.
  • C The row with department ID 40 is deleted in the DEPARTMENTS table. Also the rows with employee IDs 110 and 106 are deleted from the EMPLOYEES table.
  • D The row with department ID 40 is deleted in the DEPARTMENTS table. Also the rows with employee IDs 106 and 110 and the employees working under employee 110 are deleted from the EMPLOYEES table.
  • E The row with department ID 40 is deleted in the DEPARTMENTS table. Also all the rows in the EMPLOYEES table are deleted.
  • F The statement fails because there are no columns specifies in the DELETE clause of the DELETE statement.
参考答案
参考解析:
分类: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 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,...

3、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...

4、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...

5、Examine the data of the EMPLOYEES tab

Examine the data of the EMPLOYEES table.EMPLOYEES (EMPLOYEE_ID is the primary key. MGR_ID is the ID of managers and refers to the EMPLOYEE_ID)E...

6、Examine the data from the ORDERS and

Examine the data from the ORDERS and CUSTOMERS table.ORDERSORD_ID ORD_DATE CUST_ID ORD_TOTAL100 12-JAN-2000 15 1000009-MAR-101 40 800009-MAR-102 35...