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

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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-07 16:29:00
Original
1380 people have browsed it

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 $$
Copy after login

source:php.cn
Statement of this Website
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
Latest Issues
在symfony中使用Loggable(使用者監聽)
From 1970-01-01 08:00:00
0
0
0
mac使用
From 1970-01-01 08:00:00
0
0
0
mac使用
From 1970-01-01 08:00:00
0
0
0
マックの使用
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template