From 6294a07f818ab45d1b85b5fa840477b1168837a7 Mon Sep 17 00:00:00 2001 From: Iain Cox Date: Thu, 5 Dec 2024 15:22:22 +0100 Subject: [PATCH] Update README.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Fabrízio de Royes Mello Signed-off-by: Iain Cox --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9114f89ab80..d95ec02afbe 100644 --- a/README.md +++ b/README.md @@ -141,7 +141,7 @@ For example, calculate the average daily temperature in a table named `weather_c ```sql SELECT time_bucket('1 day', time) AS bucket, avg(temperature) AS avg_temp -FROM weather_conditions +FROM conditions GROUP BY bucket ORDER BY bucket ASC; ```