ocp 19c考题,科目082考试题(14)-starting with the letter D

来源:这里教程网 时间:2026-03-03 17:25:45 作者:

14、choose oneExamine 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

相关推荐