首页 > 解决方案 > Mysql Select 有限制的查询

问题描述

我有美国邮政编码的 MySQL 表,例如

id     | zip_code  | city       |  State
1      |   99553   | Akutan     |  Alaska
2      |   99571   | Cold Bay   |  Alaska
3      |   99583   | False Pass |  Alaska 
4      |   36006   | Billingsley|  Alabama 
5      |   36008   | Booth      |  Alabama
6      |   36051   | Marbury    |  Alabama 

......

我想使用单选 MySQL 查询为每个州仅获取 2 个城市,因此最终结果如下表所示

id     | zip_code  | city       |  State
1      |   99553   | Akutan     |  Alaska
2      |   99571   | Cold Bay   |  Alaska
4      |   36006   | Billingsley|  Alabama 
5      |   36008   | Booth      |  Alabama

标签: mysqlselectgreatest-n-per-group

解决方案


如果您正在运行 MySQL 8.0,则可以使用row_number()

select id, zip_code, city, state
from (
    select t.*, row_number() over(partition by state order by zip_code) rn
    from mytable t
) t
where rn <= 2

在早期版本中,您可以使用相关子查询进行过滤:

select t.*
from mytable t
where (
    select count(*) 
    from mytable t1 
    where t1.state = t.state and t1.zip_code <= t.zip_code
) <= 2

推荐阅读