mysql存储过程中
下面是一个较常见的场景,判断表中某列是否存在某值,如果存在执行某操作
需要注意的是不能用if exists;
exists可以在where后面或者在create object是使用,但是在if语句中不可以使用,只能用变通的方法。
?
delimiter $$ create procedure proc_add_book( in $bookName varchar (200), in $price float ) begin declare $existsFlag int default 0; select bookId into $existsFlag from book where bookName = $bookName limit 1; if bookId > 0 then #if not exists ( select * from book where bookNumber = $bookName) then insert into book(bookNumber,price) values ($bookName,$price); end if; end $$ delimiter ; |
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦