在sql里面限制前1/4
那你按照出现频数排序下,取前面数据好了
mysql可以下面写法
select * from 表 order by 频数 desc limit (select count(*) from 表)/4