Skip to content

Commit

Permalink
Update episodes/02-sql-aggregation.md
Browse files Browse the repository at this point in the history
Co-authored-by: James Foster <[email protected]>
  • Loading branch information
Joe-Heffer-Shef and jd-foster authored Jan 23, 2025
1 parent af73a87 commit 7ce4074
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 @@ -232,7 +232,7 @@ Only those `taxa` values that have more than ten records will be included becaus
This filtering is applied _after_ grouping has been done.

```sql
SELECT taxa, COUNT(*) AS species_count
SELECT taxa, COUNT(*) AS taxa_count
FROM species
GROUP BY taxa
HAVING n > 10;
Expand Down

0 comments on commit 7ce4074

Please sign in to comment.