ExamQuestions.com

Register
Login
Oracle Database Administration I Exam Questions

Oracle

Oracle Database Administration I

14 / 52

Question 14:

Examine the description of the CUSTOMERS table: 
image
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? 

Answer options:

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_%`;