有这种方式一次插入三条数据么,
insert into Student(code,name,age) values(01001,'赵华',19),
(01002,'李芳',18),
(01003,'刘虹',20);
可以参考下这个 https://crush-hj.blog.csdn.net/article/details/127221916
MySQL 表中使用 INSERT INTO VALUES语句来插入数据
insert into 表名 values (元素1 , 元素2 , 元素3 ),
(元素4, 元素5, 元素6) ;
所以正确的插入语句应该为 ,
insert into Student values(01001,' 赵华',19),
(01002,'李芳',18),
(01003,''刘虹',20);