Skip to content

Commit 480b854

Browse files
authored
Update SQL Server Name Convention and T-SQL Programming Style.md
1 parent 90433ab commit 480b854

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SQL Server Name Convention and T-SQL Programming Style.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ SQL Server T-SQL Coding Conventions, Best Practices, and Programming Guidelines.
471471
SELECT @nvcmaxVariable;
472472
```
473473
More details [here](https://themondaymorningdba.wordpress.com/2018/09/13/them-concatenatin-blues/).
474-
- Always specify a length to any text-based data type such as `varchar`, `nvarchar`, `char`, `nchar`:
474+
- <a href="data-type-length"></a> Always specify a length to any text-based data type such as `varchar`, `nvarchar`, `char`, `nchar`:
475475
```tsql
476476
/* bad */
477477
DECLARE @myBadVarcharVariable varchar;

0 commit comments

Comments
 (0)