Skip to content

Commit

Permalink
fix a couple of mistakes in operator precedence list
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinking authored and beikov committed Sep 27, 2023
1 parent 6562a00 commit 2b0412b
Showing 1 changed file with 5 additions and 2 deletions.
Expand Up @@ -275,10 +275,13 @@ The operator precedence is given by this table, from highest to lowest precedenc
| Containment | Binary infix | `in`, `not in`
| Between | Ternary infix | `between`, `not between`
| Pattern matching | Binary infix | `like`, `ilike`, `not like`, `not ilike`
| Comparison operators | Binary infix | `=`, `<>`, `<`, `>`, `\<=`, `>=`
| Nullsafe comparison | Binary infix | `is distinct from`, `is not distinct from`
| Existence | Unary prefix | `exists`
| Membership | Binary infix | `member of`, `not member of`
| Unary logical | Unary prefix | `not`
| Binary logical | Binary infix | `and`, `or`
| Logical negation | Unary prefix | `not`
| Logical conjunction | Binary infix | `and`
| Logical disjunction | Binary infix | `or`
|===

[[concatenation]]
Expand Down

0 comments on commit 2b0412b

Please sign in to comment.