MySQL批量添加数据
2020-07-06 本文已影响0人
超音速6
创建存储过程
create procedure sum1(a int)
begin
declare i int default 0; -- default 是指定该变量的默认值
while i<a DO -- 循环开始
insert into biz_tags(name,description,create_time,update_time) values(CONCAT('标签', i),NULL,now(),now());
set i=i+1;
end while; -- 循环结束
end;
执行存储过程
call sum1(100);
删除存储过程
drop procedure if exists sum1;