> select * from site, count(*) as count
> from myTable
> where year(created_at) = 2012
> group by site order by count DESC limit 10000
我正在选择大量的数据,这些数据本质上具有非常长且无用的尾巴。
我试图切断这个查询,所以它不会显示少于 500 个结果的任何内容。
我为解决这个问题所做的所有谷歌搜索都证明不是很有帮助。
知道如何构造查询以限制此数据仅显示计数为 500 或更多的站点吗?