替換特定位置的字符試想一下,你有這樣的一羣字段的列:更新多行MySQL中
ab
abc
abcd
...
我想使用單個查詢轉換這些字段是這樣的:
a_b
ab_c
abc_d
...
也就是說,在最後一個字母之前插入一個下劃線。
我可以用一個基礎做一個一個:
update test set name = 'a_b' where name ='ab';
update test set name = 'ab_c' where name ='abc';
update test set name = 'abc_d' where name ='abcd';
但作爲一個高一些領域更新的,我想必須有一個更好的方式來做到這一點。