首页 > 数据库 > MySQL > 正文

mysql退出(跳出)存储过程的办法

2024-07-24 13:00:45
字体:
来源:转载
供稿:网友
mysql缺少return来退出存储过程
可以使用leave来退出存储过程
CREATE PROCEDURE `proname`(uid int,rid int,out errorno int,...)
top:BEGIN
 ....
leave top;
END;
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表