sybase的SQL去掉字段中數據的空格(前空格、後空格、所有空格) 摘要:我們在使用sybase數據庫的時候經常會遇到字段中出現不同位置的空格,如字段值前空格“ sdfsd”,字段值中間出現空格“sdfsdf dsfsd”,字段值後面出現空格“sfsdfs”,當我們遇到這樣的問題,我們怎麼快速的去除所有的空格; 1、查詢結果去掉左空格 select ltrim(字段) from xxxx where id=278 2、查詢結果去掉右空格 select rtrim(字段) from xxxx where id=278 3、查詢結果去掉所有的空格 select str_replace(字段,' ',null) from xxxx where id=278 4、更新到sybase數據庫去掉左空格 update xxxx set 字段=( select ltrim(字段) from xxxx where id=278 ) where id=278 5、更新到sybase數據庫去掉右空格 update xxxx set 字段=( select rtrim(字段) from xxxx where id=278 ) where id=278 6、更新到sybase數據庫去掉所有的空格 update xxxx set 字段=( select str_replace(字段,' ',null) from xxxx where id=278 ) where id=278