Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kovid-r/64ce0b2022114e0cfcaf343e370fc93e to your computer and use it in GitHub Desktop.
Save kovid-r/64ce0b2022114e0cfcaf343e370fc93e to your computer and use it in GitHub Desktop.
Window functions don't work with aggregates
select max(p.mass) max_mass,
max(p.diameter) max_diameter,
max(p.density) max_density,
last_value(p.name) over (partition by null order by p.mass asc) lightest_planet,
p.name
from devstronomy.planet as p;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment