码迷,mamicode.com
首页 > 数据库 > 详细

mysql存储过程

时间:2018-12-12 12:56:29      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:sel   roc   case   查询   usecase   cat   procedure   count   创建   

MySql存储过程初识
1.创建存储过程
create procedure myproc()
begin
declare num int;
set num=1;
while num <= 10000000 do
insert into tbl_store_order_revoke_info12(id,shopRefuseCase,revokeCase) values(num, CONCAT(num ,‘@qq.com‘), MD5(num));
set num=num+1;
end while;
end;
2.调用存储过程
call myproc();
3.删除存储过程
drop procedure myproc ;
4.查询结果
select count(*) from tbl_store_order_revoke_info;
 

mysql存储过程

标签:sel   roc   case   查询   usecase   cat   procedure   count   创建   

原文地址:https://www.cnblogs.com/MagicalFool/p/10107670.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!