Skip to content

Commit dbda809

Browse files
authored
capitalized varchar
1 parent 11a2f67 commit dbda809

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/t-sql/functions/rtrim-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ SELECT RTRIM('Four spaces are after the period in this sentence. ') + 'Next s
7575
The following example demonstrates how to use `RTRIM` to remove trailing spaces from a character variable.
7676

7777
```sql
78-
DECLARE @string_to_trim varchar(60);
78+
DECLARE @string_to_trim VARCHAR(60);
7979
SET @string_to_trim = 'Four spaces are after the period in this sentence. ';
8080
SELECT @string_to_trim + ' Next string.';
8181
SELECT RTRIM(@string_to_trim) + ' Next string.';

0 commit comments

Comments
 (0)