方法一: select replace(字段,’ ‘,’’) from table; 方法二: select substr(字段,开始位置,空格开始前结束位置)||substr(字段,空格开始后位置,结束位置)from table;