Write a query that returns: total, average, the min and max number of citations for each journal. Can
you modify it so that it outputs only journals with more than 5 citations in average?
requires knowledge of GROUP BY, which isn't introduced until the next paragraph, and HAVING which isn't introduced until the next section.
I have moved this challenge into the HAVING section and added a new, more relevant challenge in its place.
The first challenge in lesson 3:
requires knowledge of
GROUP BY
, which isn't introduced until the next paragraph, andHAVING
which isn't introduced until the next section.I have moved this challenge into the
HAVING
section and added a new, more relevant challenge in its place.