Which query can be used?
Correct Answer for the Question – Which query can be used? is given below SELECT * FROM customers WHERE city LIKE ‘D_%’; SELECT * FROM customers WHERE city = ‘%D_’; SELECT * FROM customers WHERE city LIKE ‘D_’; SELECT * FROM customers WHERE city = ‘D_%’; Correct Answer The Correct Answer for this Question is SELECT … Read more