数据库
首页 > 数据库> > mysql-将aes_encrypt插入表

mysql-将aes_encrypt插入表

作者:互联网

我的查询不起作用

插入重建器(id_utente,pwd)VALUES(‘75693’,AES_ENCRYPT(‘password’,’set’))

我没有错误,但是数据库表中的pwd值为NULL.

有想法吗?
特纳克斯
Stefania

解决方法:

查看SQLFIDDLE

create table rebuilder (
  id_utente int,
  pwd varbinary(200) 
);

-- data
insert into rebuilder (id_utente, pwd) 
values (75693,aes_encrypt('password','set'));

查看SQLFIDDLE

标签:password-encryption,mysql
来源: https://codeday.me/bug/20191122/2058329.html