diff --git a/src/current/v26.1/statements.md b/src/current/v26.1/statements.md new file mode 100644 index 00000000000..2acb8cec870 --- /dev/null +++ b/src/current/v26.1/statements.md @@ -0,0 +1,25 @@ +--- +title: SHOW RANGES enhancements +summary: SHOW RANGES +toc: true +docs_area: reference.sql +--- + +## SHOW RANGES + +### Synopsis + +The `SHOW RANGES` statement now supports additional filtering options. + +### Parameters + +| Parameter | Description | +|-----------|-------------| +| `FROM TABLE` | Show ranges for a specific table | +| `FROM INDEX` | Show ranges for a specific index | + +### Examples + +```sql +SHOW RANGES FROM TABLE my_table; +```