Page 1 of 1

Examine the description of the CUSTOMERS table:You want to display details of all customers who reside in cities startin

Posted: Sun Jun 11, 2023 3:55 pm
by answerhappygod
Examine the description of the CUSTOMERS table: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?
Examine The Des 1
Examine The Des 1 (10.17 KiB) Viewed 227 times
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_%ג€™;