Question:Consider the query: SELECT name FROM Student 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
+ AnswerB
+ Report