Mysql使用存储过程批量加入数据

-- 存储过程函数

create procedure test()

begin

declare i int;

set i=6;

while i<=100 do

insert into poslabel(id,code,org_id,label_type) values(i,concat('手环00',i),'AHZ1VMXBAK2AA',1);

set i=i+1;

end while;

end

--删除存储过程

DROP procedure test

--调用存储过程

delimiter;

call test();

你可能感兴趣的:(Mysql使用存储过程批量加入数据)