1. 程式人生 > >SQL 字串去除空格函式

SQL 字串去除空格函式

SQL 中使用ltrim()去除左邊空格rtrim()去除右邊空格沒有同時去除左右空格的函式,要去除所有空格可以用replace(字串,' ',''),將字串裡的空格替換為空 。 例:去除空格函式。
declare @temp char(50)
set @temp = ' hello sql '
print ltrim(@temp)     --去除左邊空格
print rtrim(@temp)     --去除右邊空格
print replace(@temp,' ','') --去除字串裡所有空格
print @temp

>> 輸出結果
hello sql
 hello sql
hellosql
 hello sql