RTRIM(Transact-SQL)
후행 공백을 모두 잘라낸 문자열을 반환합니다.
구문
RTRIM ( character_expression )
인수
반환 형식
varchar 또는 nvarchar
예
다음 예에서는 RTRIM을 사용하여 문자 변수에서 후행 공백을 제거하는 방법을 보여 줍니다.
DECLARE @string_to_trim varchar(60);
SET @string_to_trim = 'Four spaces are after the period in this sentence. ';
SELECT @string_to_trim + ' Next string.';
SELECT RTRIM(@string_to_trim) + ' Next string.';
GO
결과 집합은 다음과 같습니다.
-------------------------------------------------------------------------
Four spaces are after the period in this sentence. Next string.
(1 row(s) affected)
-------------------------------------------------------------------------
Four spaces are after the period in this sentence. Next string.
(1 row(s) affected)