一、编写测试案例向MySQL数据库中插入百万条数据。测试数据表建表脚本如下:use db_xk;
drop table if exists tb_test2;
create table tb_test2 (
id int primary key auto_increment,
subject varchar(50) not null,
description varchar(200) not null,
teacher_id int(10) zerofill not null,
student_id int(10) zerofill default null,
state b
1