NotationΒΆ
Notation |
Description |
Example |
---|---|---|
|
Reserved words used as keywords in SQL statements. See full list here |
|
|
User-defined identifiers such as table names, column names, aliases, and variables. |
|
Arithmetic operators |
Used to perform mathematical operations on numeric values. See full list here |
|
Comparison operators |
Used to compare values or expressions and determine their relationship or equality within SQL statements. See full list here |
|
|
Double quotes are used to enclose identifiers that contain special characters and reserved keywords. Unquoted identifiers are case-insensitive. When identifiers are enclosed in double quotes, they become case-sensitive. |
|
|
Angle brackets are used to represent placeholders or user-defined elements in SQL statements |
|
|
Square brackets are used as syntax notation to indicate optional inputs |
|
|
The vertical bar is used to indicate a choice or alternative between different options. It signifies that only one option should be selected from the given set of possibilities. |
|
|
The curly brackets are used to group options or parameters together. They indicate that the elements inside the brackets are choices, and you can select only one of them |
|