概述
mysql 创建存储过程 循环添加记录
先创建,然后调用
-- 创建存储过程
DELIMITER;//
create procedure myproc()
begin
declare num int;
set num=1;
while num <= 24 do
insert into t_calendar_hour(hourlist) values(num);
set num=num+1;
end while;
commit;
end;//
-- 调用存储过程
CALL myproc();
最后
以上就是默默火车为你收集整理的mysql 创建存储过程 循环添加记录的全部内容,希望文章能够帮你解决mysql 创建存储过程 循环添加记录所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复