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 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?
To display details of all customers who reside in cities starting with the letter D followed by at least two characters, the correct query should use the SQL LIKE operator with appropriate wildcards. The pattern ‘D__%’ matches any city name that starts with 'D' followed by exactly two characters and then any sequence of characters. Therefore, the correct query is SELECT * FROM customers WHERE city LIKE ‘D__%’;.
A is correct
A is correct.
A is correct
I think A should be correct . A. city LIKE ‘D__%’
% is zero or more char so ...
Definitely A
A is correct
A is correct