Ahora es aún más simple:PostgreSQL 9.4 introdujo el mode()
función:
select mode() within group (order by food_id)
from munch
group by country
devuelve (como el ejemplo del usuario2247323):
country | mode
--------------
GB | 3
US | 1
Consulte la documentación aquí:https://wiki.postgresql.org/wiki/Aggregate_Mode
https://www.postgresql.org/docs/current/static/functions-aggregate.html#FUNCTIONS-ORDEREDSET-TABLE