aes_encrypt插入表中

时间:2014-01-12 21:45:05

标签: mysql password-encryption

我的查询不起作用

INSERT INTO rebuilder (id_utente, pwd)VALUES('75693',AES_ENCRYPT('password','set'))

我没有错误,但DB表中的pwd值为NULL。

想法? TNX 斯特凡

1 个答案:

答案 0 :(得分:3)

请参阅SQLFIDDLE

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

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

enter image description here

请参阅SQLFIDDLE