Home  >  Article  >  Database  >  使用存储过程实现循环插入100条记录

使用存储过程实现循环插入100条记录

WBOY
WBOYOriginal
2016-06-07 16:29:001285browse

mysql delimiter $$mysql create procedure p3()- MODIFIES SQL DATA- BEGIN- set @i=0;- set @max=100;- while @i@max do- insert into user values (@i);- set @i = @i + 1;- end while;- end $$

mysql> delimiter $$
mysql> create procedure p3()
-> MODIFIES SQL DATA
-> BEGIN
-> set @i=0;
-> set @max=100;
-> while @i<@max do
-> insert into user values (@i);
-> set @i = @i + 1;
-> end while;
-> end $$

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn