From 7cb236b30b9e859300d2040c5bfafe1db2c30e16 Mon Sep 17 00:00:00 2001 From: Pablo Musa Date: Thu, 9 Jan 2025 17:46:28 +0100 Subject: [PATCH] Update lab_3.2.sql (#31) As flagged by Don Zur in [clickhouse-academy](https://clickhousedb.slack.com/archives/C049M59EZ28/p1733016020194539). --- developer/03_modeling_data/lab_3.2.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/developer/03_modeling_data/lab_3.2.sql b/developer/03_modeling_data/lab_3.2.sql index 661355d..7f07aad 100644 --- a/developer/03_modeling_data/lab_3.2.sql +++ b/developer/03_modeling_data/lab_3.2.sql @@ -38,12 +38,12 @@ FROM crypto_prices WHERE crypto_name = 'Bitcoin'; /* - * Only a single granule was processed. As crypto_name is a primary key, - * ClickHouse use it to optmize the query. + * Only a very small number of granules was processed. As crypto_name is a + * primary key, ClickHouse use it to optmize the query. */ --Step 7: SELECT avg(price) FROM crypto_prices -WHERE crypto_name LIKE 'B%'; \ No newline at end of file +WHERE crypto_name LIKE 'B%';