题目:下列选项中,采用不指定表的字段名的方式向表Student中添加id为1,name为”小王”的记录,正确的SQL语句是
A. INSERT INTO Student (“id”, “name”) VALUES (1,”小王”);
B. INSERT INTO Student VALUE (1,”小王”);
C. INSERT INTO Student VALUES (1,’小王’);
D. INSERT INTO Student (id, name) VALUES (1,’小王’);
答案:评论后可见此内容