有如下表定义,()插入语句是正确的。CREATE TABLE student(studentidintnotnull,namechar(10)null,ageintnotnull,sexchar(1)notnull,dischar(10))
A. INSERT INTO studentVALUES(11,'abc',20, 'f')
B. INSERT INTO student(studentid,sex,age) VALUES (11,'f',20)
C. INSERT INTO student(studentid,sex,age) VALUES (11,20, 'f',NULL)
D. INSERT INTO student SELECT 11, 'ABC',20, 'F', 'test'