Mysql Replace 函数替换它在指定列或字符串中找到的字符串,是否有任何其他方法可以限制列/字符串的替换计数?
# replace 32 from the string, there are 3 occurance
SELECT REPLACE('32,138,149,145,146,121,134,127,129,120,132,232','32','');
# note: 132,232 converted to 1 and 2
print>>> ,138,149,145,146,121,134,127,129,120,1,2
如何克服这一点?