Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
文字列の後続ブランクを削除します。
RTRIM( string-expression )
string-expression 削除する文字列。
結果の実際の長さは、式の長さから、削除する文字数を引いた値です。すべての文字を削除すると、結果は空の文字列になります。
引数が NULL の場合、結果は NULL 値になります。
次の文は、すべての後続ブランクが削除された文字列 Test Message を返します。
Test Message
SELECT RTRIM( 'Test Message ' );