Home >Database >Mysql Tutorial >mysql触发器跳出当前循环方法_MySQL

mysql触发器跳出当前循环方法_MySQL

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-01 13:36:121854browse

bitsCN.com

mysql触发器跳出当前循环方法

 

set @num=@UnitLength/3;

label:

while i

     set @length=(select SUBSTRING(@unit_sid_fk,1,@UnitLength-3*i));

     set @sms_content=(select sms_content from sms_config where  sms_
type='smsCall' and unit_sid_fk=@length);

     set @sms_counts=(select sms_counts from sms_config where sms_
type='smsCall'and unit_sid_fk=@length);

     if @sms_content is not null then      

       insert into sms_task set mt_at_time=@date,mt_content=@sms_content,unit_
sid_fk=@unit_sid_fk,mt_
dst_num=@calltelephone,mt_add_time=@date,mt_group_id=@groupid,branch
_num=@sms_counts,mt_dst_size='1',sms_channel='SMSPORT',mt_type_id='99';

       set New.sms_send='Y';     

 leave label;

     end if;

set i=i+1;

end while;

   www.bitsCN.com  

在while循环外面添加label: 用 leave label; 即可跳出当前循环。
 

bitsCN.com
Statement:
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