Update content/shared/sql-reference/where.md

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
pull/6278/head
Jameelah Mercer 2025-07-31 22:31:58 -07:00 committed by GitHub
parent c0aff8f475
commit 45bdbb409c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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 >}}