惯用sql持续更新
常用sql持续更新
#是否包含某串
select * from table tt where locate('7',tt.col)>0
#替换
UPDATE table SET col=REPLACE(col, '_27', '')