5

トランザクション テーブルの説明フィールドには、正常に機能する値があります。説明フィールドのデフォルト値は NULL です。機能しません。

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

助けて..

4

1 に答える 1

10

使用ifnull():

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

ドキュメンテーション

于 2012-06-25T10:25:38.857 に答える