Q. What does this query do?
Code:
SELECT name FROM students WHERE name LIKE 'A%';
β
Correct Answer: (A)
Selects students with names starting with A
Explanation: `'A%'` matches strings that start with 'A'.