Chinaunix首页 | 论坛 | 博客
  • 博客访问: 607441
  • 博文数量: 487
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 4916
  • 用 户 组: 普通用户
  • 注册时间: 2018-07-05 13:59
个人简介

ocp考试资料群:569933648 验证码:ocp OCP 12c 19c考试题库解析与资料群:钉钉群号:35277291

文章分类

全部博文(487)

文章存档

2023年(37)

2021年(151)

2020年(37)

2019年(222)

2018年(38)

我的朋友

分类: Oracle

2019-02-12 16:13:41

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

阅读(1459) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~