码迷,mamicode.com
首页 > 数据库 > 详细

Oracle ocp 12c-071最新考试题库及答案-1

时间:2019-02-12 17:20:22      阅读:318      评论:0      收藏:0      [点我收藏+]

标签:最新   wing   into   ati   考试题   command   考试   ase   12c   

choose the best answer:

View the Exhibit and examine the structure of the CUSTOMERS table.

CUSTOMER_VU is a view based on CUSTOMERS_BR1 table which has the same structure as CUSTOMERS table.

CUSTOMERS needs to be updated to reflect the latest information about the customers.

What is the error in the following MERGE statement?

MERGE INTO customers c
USING customer_vu cv
ON (c.customer_id = cv.customer_id)
WHEN MATCHED THEN
UPDATE SET
c.customer_id = cv.customer_id,
c.cust_name = cv.cust_name,
c.cust_email = cv.cust_email,
c.income_level = cv.income_level
WHEN NOT MATCHED THEN
INSERT VALUES(cv.customer_id,cv.cust_name,cv.cust_email,cv.income_level)
WHERE cv.income_level >100000;

A) The INTO clause is misplaced in the command.
B) The WHERE clause cannot be used with INSERT.
C) CUSTOMER_VU cannot be used as a data source.
D) The CUSTOMER_ID column cannot be updated

answer:D

Oracle ocp 12c-071最新考试题库及答案-1

标签:最新   wing   into   ati   考试题   command   考试   ase   12c   

原文地址:http://blog.51cto.com/13854012/2349467

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!