Skip to content

Commit

Permalink
Merge pull request #113 from scottcpeterson/patch-1
Browse files Browse the repository at this point in the history
Avg_Citation_Count needs to be rewritten
  • Loading branch information
libcce authored Feb 5, 2021
2 parents f13d6fe + bda69fd commit d527811
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion episodes/04-aggregating-calculating.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ As you can see, it is difficult to tell though what ISSN has the highest average
SELECT ISSNs, AVG(Citation_Count)
FROM articles
GROUP BY ISSNs
ORDER BY Avg_Citation_Count DESC;
ORDER BY AVG(Citation_Count) DESC;
~~~
{: .sql}

Expand Down

0 comments on commit d527811

Please sign in to comment.