本文介绍了MySQL UPDATE 将数据追加到列中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要更新表名 (col1name)
I need to UPDATE tablename (col1name)
如果已经有数据,我需要附加值'a,b,c'如果它是NULL,我需要添加值'a,b,c'
If there is already data, I need to append it with values 'a,b,c' If it is NULL, I need to add the values 'a,b,c'
我知道有一个 CONCAT 参数,但不确定 SQL 语法是什么.
I know there is a CONCAT argument, but not sure what the SQL syntax would be.
更新表名 set col1name = concat(ifnull(col1name, 'a,b,c'), 'a,b,c')
上面说的对吗?
推荐答案
试试这个查询:
update tablename set col1name = concat(ifnull(col1name,""), 'a,b,c');
参考这个 sql fiddle 演示.
这篇关于MySQL UPDATE 将数据追加到列中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!