当前位置: 首页 > 工具软件 > loop > 使用案例 >

mysql存储过程使用loop循环

戚阳曜
2023-12-01

1.简介

 

loop循环相当于一个while True ... if ... break 循环,与repeat循环不同,loop可以在循环体的任何位置离开循环,而repeat只能在

循环体最后进行until判断

loop还提供了循环标签,用于在嵌套循环中标识不同层次的循环

下面是一个简单示例:

CREATE DEFINER=`root`@`localhost` PROCEDURE `loop_test`()
BEGIN
	#日志名称
	declare log_name varchar(40) default 'loop_test';
	#存储过程开始时间戳
	declare start_time timestamp(3) default now();
    #当前计数
    declare current_count int default 0;
    
    loop1:loop
		set current_count = current_count + 1;
		insert into log (log_name,content,start_time) values (log_name,concat("当前计数为",current_count ),start_time);
        if current_count = 10 THEN 
			leave loop1;
        end if;    
    end loop;    
    
	select * from log where log.log_name = log_name and log.start_time = start_time;
END
mysql> CALL `test`.`
 类似资料: