其他分享
首页 > 其他分享> > ocp 19c考题,科目082考试题(14)-starting with the letter D followed by at least two characters

ocp 19c考题,科目082考试题(14)-starting with the letter D followed by at least two characters

作者:互联网

14、choose one

Examine the description of the CUSTOMERS table:

name null? type

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

CUST_ID NOT NULL VARCHAR2(6)

FIRST_NAME VARCHAR2(50)

LAST_NAME NOT NULL VARCHAR2(50)

ADDRESS VARCHAR2(50)

CITY VARCHAR2(50)

You want to display details of all customers who reside in cities starting with the letter D followed by at least two characters.

Which query can be used?

A. SELECT * FROM customers WHERE city LIKE ‘D__%’;

B. SELECT * FROM customers WHERE city = ‘%D_’;

C. SELECT * FROM customers WHERE city LIKE ‘D_’;

D. SELECT * FROM customers WHERE city = ‘D_%’;

Source : cuug

标签:city,customers,followed,14,50,VARCHAR2,characters,WHERE,SELECT
来源: https://www.cnblogs.com/alice9313/p/15802198.html