我有一个名为标签的列,其中包含项目的各种标签。它看起来像这样:
news,article,sunday,times
我想将此更新为
news,article,sunday,times,dining
有没有办法使用更新查询?对于整数值,您可以在查询col_name=col_name+100
中提及,是否有一种方法可以使字符串值执行相同的操作?
任何帮助将不胜感激。
答案 0 :(得分:1)
你可以concat()
做某事
update table
set
tags = concat(tags,',','dining');