1五、(6-24)choose the best answer
Examine the structure of the MEMBERS table:
You want to display details of all members who reside in states starting with the letter A followed
by exactly one character.ide
Which SQL statement must you execute?it
A. SELECT * FROM MEMBERS WHERE state LIKE 'A%’;table
B. SELECT * FROM MEMBERS WHERE state LIKE 'A_%’;class
C. SELECT * FROM MEMBERS WHERE state LIKE 'A_';ember
D. SELECT * FROM MEMBERS WHERE state LIKE '%A_';tab
Answer:A
(解析:答案 B 也是能夠達到要求,可是不是最好的答案)di