Complete the code to create a clustering key on the 'customer_id' column.
ALTER TABLE sales_data CLUSTER BY ([1]);The clustering key should be set on the 'customer_id' column to optimize queries filtering by customer.
Complete the code to create a clustering key on multiple columns: 'region' and 'order_date'.
ALTER TABLE sales_data CLUSTER BY ([1], order_date);To cluster by 'region' and 'order_date', the first column must be 'region'.
Fix the error in the clustering key syntax to cluster by 'order_date'.
ALTER TABLE sales_data CLUSTER BY [1];The clustering key columns must be enclosed in parentheses without quotes.
Fill both blanks to create a clustering key on 'region' and 'customer_id'.
ALTER TABLE sales_data CLUSTER BY ([1], [2]);
The clustering key should be on 'region' first, then 'customer_id' to optimize queries filtering by these columns.
Fill all three blanks to create a clustering key on 'region', 'order_date', and 'product_id'.
ALTER TABLE sales_data CLUSTER BY ([1], [2], [3]);
The clustering key columns are 'region', then 'order_date', then 'product_id' to optimize multi-dimensional queries.