Skip to content

Commit 91a16d8

Browse files
authored
Merge pull request #249 from samhaese/patch-1
Typo fixes
2 parents 4b883eb + c3ec220 commit 91a16d8

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
@@ -325,7 +325,7 @@ SQL Server T-SQL Coding Conventions, Best Practices, and Programming Guidelines.
325325
4. All [Service Broker statements](https://docs.microsoft.com/sql/t-sql/statements/send-transact-sql):
326326
> If the SEND statement isn't the first statement in a batch or stored procedure, the preceding statement must be terminated with a semicolon (;).
327327
328-
- All script files should end with `GO` and line break. This is neccesary for batching scripts run throw `sqlcmd` or another tools.
328+
- All script files should end with `GO` and line break. This is necessary for batching scripts run through `sqlcmd` or another tools.
329329
- Keywords should be in **UPPERCASE**: `SELECT`, `FROM`, `GROUP BY` etc. This increases the readability of the code.
330330
- Data types declaration should be in **lowercase**: `varchar(30)`, `int`, `real`, `nvarchar(max)` etc.
331331
More details [here](https://www.sentryone.com/blog/aaronbertrand/backtobasics-lower-case-data-types).

0 commit comments

Comments
 (0)