OCP-1Z0-新051-61题版本-3

QUESTION NO: 3

Here is the structure and data of the CUST_TRANS table:

Exhibit:


Dates are stored in the default date format dd-mm-rr in the CUST_TRANS table.

Which three SQL statements would execute successfully? (Choose three.)

A. SELECT transdate + '10' FROM cust_trans;

B. SELECT * FROM cust_trans WHERE transdate = '01-01-07';

C. SELECT transamt FROM cust_trans WHERE custno > '11';

D. SELECT * FROM cust_trans WHERE transdate='01-JANUARY-07';

E. SELECT custno + 'A' FROM cust_trans WHERE transamt > 2000;

Answer: A,C,D

答案解析:

参考:86题:http://blog.csdn.net/rlhua/article/details/12858827

原文地址:https://www.cnblogs.com/hzcya1995/p/13316245.html