Mysql中表student_info(id,name,birth,sex),字段类型都是varchar,插入如下记录:(‘1014‘,‘张三‘,‘2002-01-06‘,‘男‘);SQL错误的是()?
A insertintostudent_infovalues(‘1014‘,‘张三‘,‘2002-01-06‘,‘男‘);
B insertintotablestudent_infovalues(‘1014‘,‘张三‘,‘2002-01-06‘,‘男‘);
C insertintostudent_info(id,name,birth,sex)values(‘1014‘,‘张三‘,‘2002-01-06‘,‘男‘);
D insertintostudent_info(id,name,sex,birth)values(‘1014‘,‘张三‘,‘男‘,‘2002-01-06‘);
相关试题
-
Mysql中表student_info(id,name,birth,sex),字段类型都是varchar,插入如下记录:(‘1014‘,‘张三‘,‘2002-01-06‘,‘男‘);SQL错误的是()
-
Mysql中表student_info(id,name,birth,sex),字段类型都是varchar,插入:1016,王五,2003-03-01,男;SQL错误的是()?
-
Mysql中表student_info(id,name,birth,sex),字段类型都是varchar,插入:1018,赵六,2003-08-02,男;SQL正确的是()?
-
Mysql中表student_table(id,name,birth,sex),插入如下记录:(‘1001‘,‘‘,‘2000-01-01‘,‘男‘);(‘1002‘,null,‘2000-12-2