1、前后的空格:使用LTrim和RTrim即可,例如:LTrim(RTrim(Name)) 2、中间的空格:使用replace函数替换,例如:Replace(Name,' ','') 3、特殊的空格:replace(Name,char(9),'')