Q. What does this query do?
Code:
SELECT name FROM customers WHERE city = 'Delhi';
β
Correct Answer: (C)
Selects names of customers in Delhi
Explanation: This query selects the `name` of customers whose city is 'Delhi'.