Skip to content

Commit deb8e49

Browse files
committed
...
1 parent 37e53bc commit deb8e49

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

cds/cxl.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ navigates along the `author` association of the `Books` entity only if the autho
768768

769769
## Operators
770770

771-
Depicted in below excerpt of the syntax diagram for `expr`, CXL supports all the standard SQL operators as well as a few additional ones, such as the `?` operator to check for the existence of a path.
771+
As depicted in below excerpt of the syntax diagram for `expr`, CXL supports all the standard SQL operators as well as a few additional ones, such as the `?` operator to check for the existence of a path.
772772

773773
![](assets/cxl/operators.drawio.svg)
774774

@@ -783,8 +783,8 @@ Following table gives an overview of the guaranteed supported operators in CXL:
783783
| `=`, `==`, `!=`, `<>` | Equality. | `price == 100` |
784784
| `is null`, `is not null` | Null checks (postfix). | `price is null` |
785785
| `like`, `not like` | Pattern matching. | `name like 'A%'` |
786-
| `between ... and` | Range checking. | `x between 1 and 10` |
787-
| `case when then` | Case checking. | `case when 1 then 2 end` |
786+
| `between`-`and` | Range checking. | `x between 1 and 10` |
787+
| `case`-`when`-`then` | Case checking. | `case when 1 then 2 end` |
788788
| `exists`, `not exists` | Existence checking (prefix). | `name like 'A%'` |
789789
| `and`, `or` | Logical operators. | `x>1 or y<2` |
790790

0 commit comments

Comments
 (0)