最佳答案
我想更新我所有记录上的代码,使之符合当前的标准,有什么想法吗?
例如,如果代码是 apple _ 1和 apple _ 2,我需要它们是 apple _ 1 _ standard 和 apple _ 2 _ standard
id code
------------
1 apple_1
1 apple_2
update categories set code = code + "_standard" where id = 1;
id code
----------------------
1 apple_1_standard
1 apple_2_standard