Consider the query:
sql
SELECT name
FROM Students
WHERE name LIKE '_a%';
Which names will be displayed?
A. Names starting with "a"
B. Names containing "a" as the second letter
C. Names starting with "a" or "A"
D. Names containing "a" as any letter except the first