日期:2014-05-19 浏览次数:20327 次
update A1 set B2=ltrim(B2)
------解决方案--------------------
如果要清掉所有位置出现的空格
update a1 set b2=replace(b2,' ','')
------解决方案--------------------
--既然分多,就说多点吧 --可能你看到的空不是空格,比如TAB update A1 set B2=ltrim(replace(replace(B2,char(9),''),char(1),''))
------解决方案--------------------
update A1 set B2=ltrim(B2)