码迷,mamicode.com
首页 > 其他好文 > 详细

【12c OCP】CUUG OCP认证071考试原题解析(33)

时间:2019-02-25 10:34:03      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:remove   structure   table   product   显示   ice   sql   rod   struct   

33.choose the best answer

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

Examine the following SQL statement:

SELECT order_id, product_id, unit_price

FROM order_items

WHERE unit_price =

(SELECT MAX(unit_price)

FROM order items

GROUP BY order_id);

You want to display the PRODUCT_ID of the product that has the highest UNIT_PRICE per ORDER_ID.

What correction should be made in the above SQL statement to achieve this?

A) Replace = with the >ALL operator.

B) Replace = with the >ANY operator.

C) Remove the GROUP BY clause from the subquery and place it in the main query.

D) Replace = with the IN operator.

Answer:D

(解析:题意是希望显示每个 ORDER_ID 具有最高 UNIT_PRICE 的产品的 PROT_ID 的信息)

【12c OCP】CUUG OCP认证071考试原题解析(33)

标签:remove   structure   table   product   显示   ice   sql   rod   struct   

原文地址:https://blog.51cto.com/13854012/2354275

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