查询分组后每个分组的前几条记录
程序员文章站
2024-01-17 18:47:04
...
在MySQL使用中,经常需要查询每个分组的前几条记录(查询分组后每一个组的前几项),下面写了个简单的例子说明下SQL的写法。简单的表设计如下,要求每个班总分排名最前的前两条数据。 测试表语句如下: create table test(id int unsigned not null auto_inc
在MySQL使用中,经常需要查询每个分组的前几条记录(查询分组后每一个组的前几项),下面写了个简单的例子说明下SQL的写法。简单的表设计如下,要求每个班总分排名最前的前两条数据。
测试表语句如下:
create table test(id int unsigned not null auto_increment primary key,name varchar(10),class varchar(20),score varchar(20)); insert into test(name, class, score) values ('gonn', '6(1)', '299'); insert into test(name, class, score) values ('yyun', '6(1)', '259'); insert into test(name, class, score) values ('lin', '6(1)', '289'); insert into test(name, class, score) values ('mei', '6(1)', '277'); insert into test(name, class, score) values ('xj', '6(2)', '287'); insert into test(name, class, score) values ('zhl', '6(2)', '277'); insert into test(name, class, score) values ('lwjs', '6(2)', '257'); insert into test(name, class, score) values ('lulu', '6(2)', '265');
运行以上SQL,得到的表结构如下:
mysql> SELECT * FROM test; +----+------+-------+-------+ | id | name | class | score | +----+------+-------+-------+ | 1 | gonn | 6(1) | 299 | | 2 | yyun | 6(1) | 259 | | 3 | lin | 6(1) | 289 | | 4 | mei | 6(1) | 277 | | 5 | xj | 6(2) | 287 | | 6 | zhl | 6(2) | 277 | | 7 | lwjs | 6(2) | 257 | | 8 | lulu | 6(2) | 265 | +----+------+-------+-------+ 8 rows in set
方法一
mysql> SELECT a.id,a.name,a.class,a.score FROM test a LEFT JOIN test b on a.class = b.class and a.score方法二
mysql> SELECT * FROM test a WHERE 2 >(SELECT count(*) FROM test WHERE class = a.class and score>a.score) ORDER BY a.class,a.score DESC; +----+------+-------+-------+ | id | name | class | score | +----+------+-------+-------+ | 1 | gonn | 6(1) | 299 | | 3 | lin | 6(1) | 289 | | 5 | xj | 6(2) | 287 | | 6 | zhl | 6(2) | 277 | +----+------+-------+-------+ 4 rows in set这里列出了多种SQL语句的实现方法,有些是MySQL特有的(Limit, 其它数据库可根据实际更改,比如oracle的rownum,MS SQL SERVER 的 top,..),有时是SQL标准支持的。但效率上和应用的场合或许不同。具体应用时可根据实际表中的记录情况,索引情况进行选择。
推荐阅读
-
查询分组后每个分组的前几条记录
-
mysql分组取每组前几条记录(排名) 附group by与order by的研究_MySQL
-
分组后,查找(前,后)N条记录
-
mysql分组取每组前几条记录(排名) 附group by与order by的研究_MySQL
-
mysql分组查询查询每个组前面40条数据里面某个字段不能连续超过8条为空的记录,请大神指导
-
mysql分组查询查询每个组前面40条数据里面某个字段不能连续超过8条为空的记录,请大神指导
-
mysql使用GROUP BY分组实现取前N条记录的方法
-
mysql分组取每组前几条记录(排名) 附group by与order by的研究
-
Sql_从查询的结果集中分组后取最后有效的数据成新的结果集小记(待优化)
-
pandas groupby 分组取每组的前几行记录方法