所以......同桌。我在phpMyAdmin工作。
如果A列包含'thingOne',则将'thingTwo'添加到B列
UPDATE `table` SET tablefield = replace(tablefield,"your mom","my mom");
我可以找到/替换。
对于B栏,我想添加已经存在的内容。
答案 0 :(得分:1)
UPDATE `table`
SET columnB = CONCAT(columnB, 'thingTwo')
WHERE columnA = LIKE '%thingOne%'