gpt4 book ai didi

mysql - aes_encrypt 插入表

转载 作者:可可西里 更新时间:2023-11-01 08:17:31 26 4
gpt4 key购买 nike

我的查询不工作

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

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

想法?发件人斯蒂芬妮娅

最佳答案

参见 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

关于mysql - aes_encrypt 插入表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21080672/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com