Skip to content

Commit 8223936

Browse files
committed
Add docs
1 parent 8bc8c76 commit 8223936

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

mkdocs/docs/expression-dsl.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ age_greater_than_18 = GreaterThan("age", 18)
6060

6161
# Greater than or equal to
6262
age_greater_than_or_equal_18 = GreaterThanOrEqual("age", 18)
63+
64+
6365
```
6466

6567
#### Set Predicates

mkdocs/docs/row-filter-syntax.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,15 @@ column NOT LIKE 'prefix%'
100100
!!! important
101101
The `%` wildcard is only supported at the end of the pattern. Using it in the middle or beginning of the pattern will raise an error.
102102

103+
## BETWEEN
104+
105+
The BETWEEN operator filters a numeric value against an inclusive range, e.g. `a between 1 and 2` is equivalent to `a >= 1 and a <= 2`.
106+
107+
```sql
108+
column BETWEEN 1 AND 2
109+
column BETWEEN 1.0 AND 2.0
110+
```
111+
103112
## Logical Operations
104113

105114
Combine multiple conditions using logical operators:

0 commit comments

Comments
 (0)