From 45bdbb409cbca3fe1aba20e0927d166d9f3d5d50 Mon Sep 17 00:00:00 2001 From: Jameelah Mercer <36314199+MeelahMe@users.noreply.github.com> Date: Thu, 31 Jul 2025 22:31:58 -0700 Subject: [PATCH] Update content/shared/sql-reference/where.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- content/shared/sql-reference/where.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/shared/sql-reference/where.md b/content/shared/sql-reference/where.md index f7dc25246..b28e3aa97 100644 --- a/content/shared/sql-reference/where.md +++ b/content/shared/sql-reference/where.md @@ -136,7 +136,7 @@ This query filters data to include only records from the previous calendar day: ```sql SELECT * FROM h2o_feet -WHERE time >= NOW() - INTERVAL '1 day' +WHERE time >= NOW() - INTERVAL '1 day' AND location = 'santa_monica' ``` {{< expand-wrapper >}}