Home > Database > Mysql Tutorial > body text

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

WBOY
Release: 2016-06-07 16:29:00
Original
1336 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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template