update tablename set name = REPLACE(REPLACE(REPLACE(REPLACE(name,CHR(13),‘‘),CHR(10),‘‘),CHR(9),‘‘),‘ ‘,‘‘);
CHR(13)表示回车
CHR(10)表示换行
CHR(9)表示tab空格
2022-07-29 18:05:35
update tablename set name = REPLACE(REPLACE(REPLACE(REPLACE(name,CHR(13),‘‘),CHR(10),‘‘),CHR(9),‘‘),‘ ‘,‘‘);
CHR(13)表示回车
CHR(10)表示换行
CHR(9)表示tab空格