字符前的空格,用ltrim(string)
字符后的空格,用rtrim(string)
字符中的空格,用replace(string, ' ', ' ')
例
update qx_users set `NAME`=rtrim(NAME)
update qx_users set `NAME`=ltrim(NAME)update qx_users set NAME=replace(NAME,' ','')本文共 256 字,大约阅读时间需要 1 分钟。
字符前的空格,用ltrim(string)
字符后的空格,用rtrim(string)
字符中的空格,用replace(string, ' ', ' ')
例
update qx_users set `NAME`=rtrim(NAME)
update qx_users set `NAME`=ltrim(NAME)update qx_users set NAME=replace(NAME,' ','')转载于:https://www.cnblogs.com/weixin18/p/10844276.html