大家好,我是考100分的小小码 ,祝大家学习进步,加薪顺利呀。今天说一说2016年7月n2真题答案百度文库_2019年12月发票认证时间,希望您对编程的造诣更进一步.
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 函数来处理。)
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
转载请注明出处: https://daima100.com/10736.html