LTrim和RTrim在SQL的用法

LTRIM :  刪除起始空格後返回字符表達式。 

語法 :  LTRIM ( character_expression ) 

參數 
character_expression  : 是字符或二進制數據表達式。character_expression 可以是常量、變量或列。character_expression 必須是可以隱性轉換爲 varchar 的數據類型。否則,使用 CAST 顯式轉換 character_expression。 

返回類型varchar 

註釋 :  兼容級別可能影響返回值。有關兼容級別的更多信息,請參見 sp_dbcmptlevel。 

示例  :  下例使用 LTRIM 字符刪除字符變量中的起始空格。 

DECLARE @string_to_trim varchar(60) 
SET @string_to_trim = ' Five spaces are at the beginning of this 
string.' 
SELECT 'Here is the string without the leading spaces: ' + 
LTRIM(@string_to_trim) 
GO 

下面是結果集: 
Here is the string without the leading spaces: Five spaces are at the beginning of this string. 
(1 row(s) affected)   
   

RTRIM :  截斷所有尾隨空格後返回一個字符串。 

語法 :  RTRIM ( character_expression ) 

參數 :  

character_expression :  由字符數據組成的表達式。character_expression 可以是常量、變量,也可以是字符或二進制數據的列。 
返回類型 :  varchar 
註釋 :  character_expression 必須爲可隱性轉換爲 varchar 的數據類型。否則請使用 CAST 函數顯式轉換 character_expression。 
說明 兼容級別可能影響返回值。有關更多信息,請參見 sp_dbcmptlevel。 
示例 :  下例顯示如何使用 RTRIM 刪除字符變量中的尾隨空格。 

DECLARE @string_to_trim varchar(60) 
SET @string_to_trim = 'Four spaces are after the period in this sentence. ' 
SELECT 'Here is the string without the leading spaces: ' + CHAR(13) + 
RTRIM(@string_to_trim) 
GO 

下面是結果集: 

(1 row(s) affected) 
------------------------------------------------------------------------ 
Here is the string without the leading spaces: Four spaces are after the period in this sentence. 
(1 row(s) affected)  

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章