首页 > 其他 > 详细

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

时间:2019-12-16 14:00:58      阅读:87      评论:0      收藏:0      [点我收藏+]

Choose two

Exanine the desatption of the BOOKS_TRANSACTIONS table

Name Null? Type

----------------------------------------------------------------------------------------------

TRANSACTION_ID     NOT NULL  VARCHAR2(6)

TRANSACTION_TYPE                    VARCHAR2(3)

BORROWED_DATE                        DATE

BOOK_ID                                      ARCHAR2(6)

MEMBER_ID                                 VARCHAR2(6)

Examine this partial SQL statement:

SELECT * FROM books_transctions;

Which two WHERE condtions give the same resut?

A) WHERE borrowed_date = SYSDATE AND (transaction_type= ‘RM‘ OR member_id IN

(‘A101‘,‘A102‘ ) );

B) WHERE borrowed_date = SYSDATE AND transaction_type= ‘RM‘ OR member_id IN

(‘A101‘,‘A102‘ ) ;

C) WHERE borrowed_date = SYSDATE AND (transaction_type= ‘RM‘ AND member_id=‘A101‘ OR

member_id = ‘A102‘) );

D) WHERE (borrowed_date = SYSDATE AND transaction_type= ‘RM‘ ) OR member_id IN

(‘A101‘,‘A102‘ );

E) WHERE borrowed_date = SYSDATE AND (transaction_type= ‘RM‘ AND ( member_id= ‘A101‘ OR

member_id = ‘A102‘ ) );

Answer::BD

(解析:考的是 and 和 or 的优先级。)

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

原文:https://www.cnblogs.com/cnblogs5359/p/12048653.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!