Mysql
 sql >> Datenbank >  >> RDS >> Mysql

SQL Wählen Sie die häufigsten Werte aus

Das geht:

select age from persons
group by age
having count(*) = (
  select count(*) from persons
  group by age
  order by count(*) desc
  limit 1)