gpt4 book ai didi

mysql - 将随机VALUE插入Mysql表中

转载 作者:行者123 更新时间:2023-11-29 22:21:18 26 4
gpt4 key购买 nike

如何将此 sql 代码的“X”转换为长度必须为 10 个字符的随机 VARCHAR

INSERT INTO mybb_invitecodes
(`code`, `used`, `maxuses`, `expire`, `primarygroup`, `othergroups`, `createdby`)
VALUES('X', '0', '1', '0', '2', '8', '1');

最佳答案

你可以试试这个:

INSERT INTO mybb_invitecodes
(code, used, maxuses, expire, primarygroup, othergroups, createdby)
VALUES (LEFT(UUID(), 10), 0, 1, 0, 2, 8, 1);

并且只需使用不带引号的数值,例如:

VALUES ('X', 10, 0, 1, 0, 2, 8, 1)

关于mysql - 将随机VALUE插入Mysql表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30683219/

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