Use the Range index to optimize range-based queries. The index enhances performance for inequality filters and BETWEEN operations on high-cardinality numeric or timestamp columns by mapping value ranges to corresponding rows.
>, <, >=, <=)column BETWEEN x AND y)column > 100), the index can quickly identify the exact set of rows that meet this condition without scanning the entire dataset.sales_amount > 500, quickly identifies only the relevant segments and returns the corresponding rows>, <, >=, <=, BETWEEN).