MySQL存储过程中判断形参是否为空null


直接看例子:

DELIMITER $$
CREATE DEFINER=`root`@`127.0.0.1` PROCEDURE `restore`(username varchar(50))
BEGIN
if username is not null then
    update user set invalid=0 and activate_time='0000-00-00 00:00:00' where `name`=username;
else
    update user set invalid=0 and activate_time='0000-00-00 00:00:00';
end if;
END$$
DELIMITER ;

调用:

1. call restore('abc');

   or call restore(null);

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM