Skip to content

Commit

Permalink
Fix syntax for field name
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe-Heffer-Shef authored Jan 23, 2025
1 parent 7ce4074 commit 81295c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion episodes/02-sql-aggregation.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ This filtering is applied _after_ grouping has been done.
SELECT taxa, COUNT(*) AS taxa_count
FROM species
GROUP BY taxa
HAVING n > 10;
HAVING taxa_count > 10;
```

:::::::::::::::::::::::::
Expand Down

0 comments on commit 81295c0

Please sign in to comment.