mysql创建存储过程批量插入数据
时间: 2023-10-23 14:12:33 浏览: 165
在MySQL中,可以使用存储过程来批量插入数据。在给出的引用中,有两个示例存储过程可以实现批量插入数据。存储过程1是创建插入课程表的存储过程,存储过程2是创建插入学生信息表的存储过程。你可以根据你的需求选择其中一个存储过程使用。
存储过程1的代码示例:
```
create procedure insert_course(max_num int)
begin
declare i int default 0;
set autocommit = 0; #设置手动提交事务
repeat # 循环
set i = i + 1;
insert into course(course_id, course_name) values(rand_num(10000, 10100), rand_string(6));
until i = max_num
end repeat;
commit; # 提交事务
end
```
存储过程2的代码示例:
```
create procedure insert_stu(max_num int)
begin
declare i int default 0;
set autocommit = 0; # 设置手动提交事务
repeat # 循环
set i = i + 1; # 赋值
insert into student_info (course_id, class_id, student_id, name) values (rand_num(10000, 10100), rand_num(10000, 10200), rand_num(1, 200000), rand_string(6));
until i = max_num
end repeat;
commit; # 提交事务
end
```
调用存储过程2,插入学生表1000000条数据的示例:
```
call insert_stu (1000000);
```
这将调用存储过程2,并向学生信息表插入1000000条数据。
如果你想查询学生信息表中的记录数量,可以使用以下语句:
```
select count(*) from student_info si;
```
这将返回学生信息表中的记录数量。
阅读全文