Important
Helios features are now enabled during weekly update windows and are no longer directly tied to SingleStore engine releases. Refer to the release notes to view the latest features available in your Helios cluster.
BETWEEN, NOT BETWEEN
BETWEEN and NOT BETWEEN check if values are in or not in a range that includes the two endpoints (inclusive).
CREATE TABLE bet_r(t TEXT);INSERT bet_r VALUES("blue"), ("orange"), ("yellow");
SELECT * FROM bet_r WHERE t BETWEEN "blue" AND "pink";
+--------+
| t |
+--------+
| blue |
| orange |
+--------+Last modified: