在mysql中使用null值更新concat文本

前端之家收集整理的这篇文章主要介绍了在mysql中使用null值更新concat文本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

trasaction表描述字段有一些值,它工作正常.
说明feild默认值为NULL,它不起作用..

update transaction set domain='hiox.com',description=CONACT(description,',domain swapped from hioxindia.com to hiox.com') where id=23602

帮我..

最佳答案
使用ifnull():

update `transaction` 
   set domain='hiox.com',description=CONCAT(ifnull(description,''),domain swapped from hioxindia.com to hiox.com') 
where id=23602

Documentation

原文链接:https://www.f2er.com/mysql/433418.html

猜你在找的MySQL相关文章