We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11a2f67 commit dbda809Copy full SHA for dbda809
1 file changed
docs/t-sql/functions/rtrim-transact-sql.md
@@ -75,7 +75,7 @@ SELECT RTRIM('Four spaces are after the period in this sentence. ') + 'Next s
75
The following example demonstrates how to use `RTRIM` to remove trailing spaces from a character variable.
76
77
```sql
78
-DECLARE @string_to_trim varchar(60);
+DECLARE @string_to_trim VARCHAR(60);
79
SET @string_to_trim = 'Four spaces are after the period in this sentence. ';
80
SELECT @string_to_trim + ' Next string.';
81
SELECT RTRIM(@string_to_trim) + ' Next string.';
0 commit comments