diff --git a/docs/en/guides/54-query/03-optimization/index.md b/docs/en/guides/54-query/03-optimization/index.md index bce7dc387e..25c5c4ae5c 100644 --- a/docs/en/guides/54-query/03-optimization/index.md +++ b/docs/en/guides/54-query/03-optimization/index.md @@ -171,10 +171,10 @@ LIMIT 10; ## Advanced Optimization -### Materialized Views +### Aggregating Indexes ```sql --- Pre-compute expensive aggregations -CREATE MATERIALIZED VIEW daily_sales AS +-- Pre-compute expensive aggregations using Databend's aggregating indexes +CREATE AGGREGATING INDEX daily_sales_agg AS SELECT DATE(order_time) as order_date, product_id,