1
0
Fork 0
mirror of https://github.com/treffynnon/sqlstyle.guide.git synced 2025-03-09 12:49:51 -05:00
This commit is contained in:
jroitgrund 2016-10-10 10:28:04 +01:00 committed by GitHub
parent e973882202
commit 38c58edc64

View file

@ -33,7 +33,7 @@ Based on a work at [http://www.sqlstyle.guide][self].
* Keep code succinct and devoid of redundant SQL—such as unnecessary quoting or
parentheses or `WHERE` clauses that can otherwise be derived.
* Include comments in SQL code where necessary. Use the C style opening `/*` and
closing `*/` where possible otherwise preceed comments with `--` and finish
closing `*/` where possible otherwise precede comments with `--` and finish
them with a new line.
```sql