gpt4 book ai didi

MySQL 添加到列

转载 作者:行者123 更新时间:2023-11-29 06:46:09 24 4
gpt4 key购买 nike

如何将数据“添加”到列中的现有数据中?

举个例子:我有值(value)观

Mary has 2 brothers

“家庭”列中,现在我想添加

and one sister

“家人”才能拥有

Mary has 2 brothers and one sister

最佳答案

如果我清楚地理解你的问题,我想你在更新语句中需要 concat 函数,如下所示:

update your_table
set family = concat(family,' and one sister')
where id = 'blabla'

这是 select 语句:

select concat(family,' and one sister') as family
from your table

关于MySQL 添加到列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49345989/

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