-3

所以...同一张桌子。我在 phpMyAdmin 工作。

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

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

我可以找到/替换。

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

4

1 回答 1

1
UPDATE `table`
SET columnB = CONCAT(columnB, 'thingTwo')
WHERE columnA = LIKE '%thingOne%'
于 2012-09-06T22:22:42.200 回答