SQL - 如果另一列符合条件,则向一列添加内容

时间:2012-09-06 22:08:57

标签: mysql

所以......同桌。我在phpMyAdmin工作。

如果A列包含'thingOne',则将'thingTwo'添加到B列

UPDATE `table` SET tablefield = replace(tablefield,"your mom","my mom");

我可以找到/替换。

对于B栏,我想添加已经存在的内容。

1 个答案:

答案 0 :(得分:1)

UPDATE `table`
SET columnB = CONCAT(columnB, 'thingTwo')
WHERE columnA = LIKE '%thingOne%'