Home > Database > Mysql Tutorial > body text

存储过程,循环插入1000条记录_MySQL

WBOY
Release: 2016-06-01 13:07:03
Original
1418 people have browsed it
PS::今天巴西又被虐了,做梦以为是3:1,醒来是3:0<br>mysql> delimiter $$mysql> create procedure p3()    -> MODIFIES SQL DATA    -> BEGIN    -> set @i=0;    -> set @max=100;    -> while @i 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