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

【2019年8月版】OCP 071认证考试原题-第37题

时间:2019-11-27 10:44:30      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:table   检索   retrieve   eve   distinct   products   nvl   var   ble   

Choose the best answer

Examine the description of the PRODUCT_INFORMATION table:

Name NULL? Type


PROD_ID NOT NULL NUMBER(2)

PROD_NANE VARCRAR2 (10)

LIST_PRICE NUMBER(6,2)

Which query retrieves the number of products with a null list price?

A) SELECT (COUNT(list_price) FERM Product_intormation WHERE list_price=NULL;

B) SELECT Count(nvl( list_price,0) )FROM pruduct_information WHERE list_price is null;

C) SELECT COUNT(DISTINCT list_price) FROM produet_infomation WHERE list_price is nulll.

D) SELECT COUNT(list_price) from proceduct_information where list_price is NULL;

Answer:B

(解析:这道题的难点在题目的提问上,题目的意思是哪个查询能够检索到 price 为空的产品数量。由于 list_price 本身为空,count 函数处理的方式是忽略,所以要用 nvl 函数来处理。)

【2019年8月版】OCP 071认证考试原题-第37题

标签:table   检索   retrieve   eve   distinct   products   nvl   var   ble   

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

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