You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mkdocs/docs/row-filter-syntax.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,11 +102,13 @@ column NOT LIKE 'prefix%'
102
102
103
103
## BETWEEN
104
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`.
105
+
The BETWEEN operator filters a column against an inclusive range of two comparable literals, e.g. `a between 1 and 2` is equivalent to `a >= 1 and a <= 2`.
106
106
107
107
```sql
108
108
column BETWEEN 1AND2
109
109
column BETWEEN 1.0AND2.0
110
+
column BETWEEN '2025-01-01'AND'2025-01-02'
111
+
column BETWEEN '2025-01-01T00:00:00.000000'AND'2025-01-01T00:00:00.000000'
0 commit comments