Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/4-language-usage/3-dml-and-sql/1-general/g-3130.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# G-3130: Try to use ANSI-join syntax.
# G-3130: Try to use ANSI SQL-92 join syntax.

!!! tip "Minor"
Maintainability, Portability

## Reason

ANSI join syntax supports the full outer join. A further advantage of the ANSI join syntax is the separation of the join condition from the query filters.
ANSI SQL-92 join syntax supports the full outer join. A further advantage of the ANSI SQL-92 join syntax is the separation of the join condition from the query filters.

## Example (bad)

Expand Down
2 changes: 1 addition & 1 deletion docs/9-appendix/appendix.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ n/a | 2230 | Try to use SIMPLE_INTEGER datatype when appropriate. | Minor | |
25 | 2510 | Avoid using the LONG and LONG RAW data types. | Major | | | | ✘ | | | |
26 | 3110 | Always specify the target columns when coding an insert statement. | Major | | | ✘ | | ✘ | | |
27 | 3120 | Always use table aliases when your SQL statement involves more than one source. | Major | | | ✘ | | | | |
28 | 3130 | Try to use ANSI-join syntax. | Minor | | | ✘ | ✘ | | | |
28 | 3130 | Try to use ANSI SQL-92 join syntax. | Minor | | | ✘ | ✘ | | | |
29 | 3140 | Try to use anchored records as targets for your cursors. | Major | | | ✘ | | ✘ | | |
n/a | 3150 | Try to use identity columns for surrogate keys. | Minor | | | ✘ | | ✘ | | |
n/a | 3160 | Avoid virtual columns to be visible. | Major | | | ✘ | | ✘ | | |
Expand Down