mirror of
https://github.com/treffynnon/sqlstyle.guide.git
synced 2025-03-09 12:49:51 -05:00
Changing Wording
Change the wording on a sentence that has a difficult tense structure in order to help get the point across
This commit is contained in:
parent
3dd55b7848
commit
3b7a871074
1 changed files with 2 additions and 2 deletions
|
@ -106,8 +106,8 @@ SELECT first_name
|
|||
in the object's name.
|
||||
* If there is already a correlation with the same name then append a number.
|
||||
* Always include the `AS` keyword—makes it easier to read as it is explicit.
|
||||
* For computed data (`SUM()` or `AVG()`) use the name you would give it were it
|
||||
a column defined in the schema.
|
||||
* For computed columns (`SUM()` or `AVG()`) name the column the same as if it
|
||||
was defined in the schema.
|
||||
|
||||
```sql
|
||||
SELECT first_name AS fn
|
||||
|
|
Loading…
Reference in a new issue