Het is nu nog eenvoudiger:PostgreSQL 9.4 introduceerde de mode()
functie:
select mode() within group (order by food_id)
from munch
group by country
retourneert (zoals het voorbeeld van gebruiker2247323):
country | mode
--------------
GB | 3
US | 1
Zie documentatie hier:https://wiki.postgresql.org/wiki/Aggregate_Mode
https://www.postgresql.org/docs/current/static/functions-aggregate.html#FUNCTIONS-ORDEREDSET-TABLE