您的位置:首页 > 产品设计 > UI/UE

OCP 1Z0 051 QUESTION NO: 59

2014-06-04 16:54 441 查看
QUESTION NO: 59

Evaluate the following two queries:

SQL> SELECT cust_last_name, cust_city

FROM customers

WHERE cust_credit_limit IN (1000, 2000, 3000);

SQL> SELECT cust_last_name, cust_city

FROM customers

WHERE cust_credit_limit = 1000 OR cust_credit_limit = 2000 OR

cust_credit_limit = 3000;

Which statement is true regarding the above two queries?

A. Performance would improve in query 2 only if there are null values in the

CUST_CREDIT_LIMIT column

B. Performance would degrade in query 2

C. There would be no change in performance

D. Performance would improve in query 2

Answer: C

与正式题库55重复

/article/8014256.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: