mirror of
https://github.com/treffynnon/sqlstyle.guide.git
synced 2025-03-09 12:49:51 -05:00
Correct reference to keyword definitions
This commit is contained in:
parent
974faf243d
commit
855e9ddfc8
1 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@ SELECT first_name
|
||||||
|
|
||||||
### Reserved words
|
### Reserved words
|
||||||
|
|
||||||
Always use uppercase for the [reserved keywords](#keyword-reference) like
|
Always use uppercase for the [reserved keywords](#reserved-keyword-reference) like
|
||||||
`SELECT` and `WHERE`.
|
`SELECT` and `WHERE`.
|
||||||
|
|
||||||
It is best to avoid the abbreviated keywords and use the full length ones where
|
It is best to avoid the abbreviated keywords and use the full length ones where
|
||||||
|
@ -93,7 +93,7 @@ SELECT a.release_date,
|
||||||
### General
|
### General
|
||||||
|
|
||||||
* Ensure the name is unique and does not exist as a
|
* Ensure the name is unique and does not exist as a
|
||||||
[reserved keyword](#keyword-reference)
|
[reserved keyword](#reserved-keyword-reference)
|
||||||
* Keep the length to a maximum of 30 bytes—in practice this is 30 characters
|
* Keep the length to a maximum of 30 bytes—in practice this is 30 characters
|
||||||
unless you are using multibyte charset
|
unless you are using multibyte charset
|
||||||
* Names must begin with a letter and may not end with an underscore
|
* Names must begin with a letter and may not end with an underscore
|
||||||
|
|
Loading…
Reference in a new issue