mysql 中用户默认密码加密问题
Posted 苍洱
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 中用户默认密码加密问题相关的知识,希望对你有一定的参考价值。
问题描述:
在mysql中 user表中新增用户默认密码为123456,但是在数据库中显示不能为明文,而mysql的默认字段不能用函数
解决方法:
用触发器
delimiter |
drop trigger if exists default_user_pwd;
create trigger default_user_pwd before insert on user
for each row
if (new.pwd is null or new.pwd =‘‘ or new.pwd =‘123456‘ )then
set new.pwd = ENCODE(‘123456‘,‘password‘);
end if;|
使用范围
可以检测某些值是否null 或者为空
以上是关于mysql 中用户默认密码加密问题的主要内容,如果未能解决你的问题,请参考以下文章