SQL Seleccione el valor más frecuente en el grupo

SELECT col, COUNT(col) AS value_occurrence
FROM m_table GROUP BY col ORDER BY value_occurrence DESC;
VasteMonde