gpt4 book ai didi

MySQL-将字符串添加到文本列

转载 作者:行者123 更新时间:2023-11-29 14:20:57 25 4
gpt4 key购买 nike

我正在尝试向某些列添加文本字符串。这是我尝试过的查询,虽然它失败了,但它解释了我想要做什么。

SET @NAME = (Select name from item_template where itemset = 801);
SET @NEWNAME = ('|cFFFF0000'+@NAME);
Update item_template set name = @NEWNAME where itemset = 801;

提前致谢! :)

最佳答案

为什么不只是

update item_template set name = concat('|cFFFF0000',name) where itemset = 801;

关于MySQL-将字符串添加到文本列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11766055/

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