mysql-主动退出存储过程:LEAVE 发表于 2019-01-17 更新于 2024-03-19 分类于 mysql 本文字数: 30 阅读时长 ≈ 1 分钟 1234567891011create procedure myproc()MAIN_BLOCK: begindeclare v_panic bool default false....if v_panic thenleave MAIN_BLOCK;end if;....end MAIN_BLOCK; 参考链接:How do you exit a procedure