HHH-16801 doc precedence of 'is true', 'is false'

This commit is contained in:
Gavin King 2023-06-25 16:29:09 +02:00
parent f13b6cc16b
commit d1bb2f4402
1 changed files with 1 additions and 1 deletions

View File

@ -271,7 +271,7 @@ The operator precedence is given by this table, from highest to lowest precedenc
| Binary multiplicative | Binary infix | `*`, `/`, `%`
| Binary additive | Binary infix | `+`, `-`
| Concatenation | Binary infix | `\|\|`
| Nullness | Unary postfix | `is null`, `is empty`
| Nullness, emptiness, truth | Unary postfix | `is null`, `is empty`, `is true`, `is false`
| Containment | Binary infix | `in`, `not in`
| Between | Ternary infix | `between`, `not between`
| Pattern matching | Binary infix | `like`, `ilike`, `not like`, `not ilike`