一尘不染

SQL-仅针对每种类型给我3个匹配

mysql

我有某种不可能的要求:)。

我有一个表,其中的一列被命名type。我想为该列中的每种类型选择3条记录。那可能吗?

还要注意,我正在使用MySQL和Sphinx。

更新:表结构

id       title        type
1        AAAA         string1
2        CCCC         string2
3        EEEE         string2
4        DDDD         string2
5        FFFF         string2
6        BBBB         string2
6        BBBB         string2

我希望我的MySQL返回的是(按标题排序的每种类型最多3条记录):

id       title        type
1        AAAA         string1
6        BBBB         string2
2        CCCC         string2
4        DDDD         string2

阅读 204

收藏
2020-05-17

共1个答案

一尘不染

select id, title, type
from   (select id, title, type,
               @num := if(@group = type, @num + 1, 1) as row_number,
               @group := type as dummy
        from   your_table
        order by type, title) as x
where  row_number <= 3

(与Martin Wickman的答案在同一网站上使用另一篇文章!)

2020-05-17