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

【ocp-12c】最新Oracle OCP-071考试题库(38题)

时间:2019-02-26 17:12:13      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:form   mon   ble   acl   tor   name   cos   The   def   

38.choose the best answer

View the Exhibit and examine the data in the PROMOTIONS table.

技术图片

PROMO_BEGIN_DATE is stored in the default date format, dd-mon-rr.

You need to produce a report that provides the name,cost,and start date of all promos

in the POST category that were launched before January 1, 2000.

Which SQL statement would you use?

A) SELECT promo_name, promo_cost, promo_begin_date

FROM promotions

WHERE promo_category LIKE ‘%post%‘ AND promo_begin_date < ‘1-JAN-00‘;

B) SELECT promo_name, promo_cost, promo_begin_date

FROM promotions

WHERE promo_category = ‘post‘ AND promo_begin_date < ‘01-01-00‘;

C) SELECT promo_name, promo_cost, promo_begin_date

FROM promotions

WHERE promo_cost LIKE ‘post%‘ AND promo_begin_date < ‘01-01-2000‘;

D) SELECT promo_name, promo_cost, Promo_begin_date

FROM promotions

WHERE promo_category LIKE ‘p%‘ AND promo_begin_date < ‘1-JANUARY-00‘;

Answer:A

(解析:因为日期的默认格式是 dd-mon-yy,所以 January 1, 2000 转换成匹配的格式为

01-jan-00

 

)

【ocp-12c】最新Oracle OCP-071考试题库(38题)

标签:form   mon   ble   acl   tor   name   cos   The   def   

原文地址:https://www.cnblogs.com/cnblogs5359/p/10438030.html

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