mysql GROUP_CONCAT获取分组的前几名

如果是oracle 应该很容易用Partition By  实现。

比如说要获取班级的前3名,就可以用GROUP_CONCAT  + GROUP BY + substring_index实现。

考试表

DROP TABLE IF EXISTS `test`;
CREATE TABLE `test` (
`id` int(11) DEFAULT NULL,
`name` varchar(20) DEFAULT NULL,
`score` int(11) DEFAULT NULL,
`class` char(12) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

插入数据

INSERT INTO `test` (`id`, `name`, `score`, `class`) VALUES (‘1‘, ‘Bobdd‘, ‘25‘, ‘1‘);
INSERT INTO `test` (`id`, `name`, `score`, `class`) VALUES (‘2‘, ‘xx‘, ‘20‘, ‘2‘);
INSERT INTO `test` (`id`, `name`, `score`, `class`) VALUES (‘3‘, ‘Jack‘, ‘30‘, ‘2‘);
INSERT INTO `test` (`id`, `name`, `score`, `class`) VALUES (‘4‘, ‘Bill‘, ‘32‘, ‘4‘);
INSERT INTO `test` (`id`, `name`, `score`, `class`) VALUES (‘5‘, ‘Nick‘, ‘22‘, ‘3‘);
INSERT INTO `test` (`id`, `name`, `score`, `class`) VALUES (‘6‘, ‘Kathy‘, ‘18‘, ‘3‘);
INSERT INTO `test` (`id`, `name`, `score`, `class`) VALUES (‘7‘, ‘Steve‘, ‘36‘, ‘3‘);
INSERT INTO `test` (`id`, `name`, `score`, `class`) VALUES (‘8‘, ‘Anne‘, ‘25‘, ‘2‘);
INSERT INTO `test` (`id`, `name`, `score`, `class`) VALUES (‘9‘, ‘Kathy‘, ‘18‘, ‘2‘);
INSERT INTO `test` (`id`, `name`, `score`, `class`) VALUES (‘11‘, ‘Bob1‘, ‘25‘, ‘3‘);
INSERT INTO `test` (`id`, `name`, `score`, `class`) VALUES (‘12‘, ‘Jane1‘, ‘20‘, ‘1‘);
INSERT INTO `test` (`id`, `name`, `score`, `class`) VALUES (‘13‘, ‘Jack1‘, ‘30‘, ‘1‘);
INSERT INTO `test` (`id`, `name`, `score`, `class`) VALUES (‘14‘, ‘Bill1‘, ‘32‘, ‘1‘);
INSERT INTO `test` (`id`, `name`, `score`, `class`) VALUES (‘15‘, ‘Nick1‘, ‘22‘, ‘4‘);
INSERT INTO `test` (`id`, `name`, `score`, `class`) VALUES (‘16‘, ‘Kathy1‘, ‘18‘, ‘4‘);
INSERT INTO `test` (`id`, `name`, `score`, `class`) VALUES (‘17‘, ‘Steve1‘, ‘36‘, ‘4‘);
INSERT INTO `test` (`id`, `name`, `score`, `class`) VALUES (‘18‘, ‘Anne1‘, ‘25‘, ‘1‘);
INSERT INTO `test` (`id`, `name`, `score`, `class`) VALUES (‘19‘, ‘Kathy1‘, ‘18‘, ‘2‘);

运用group_concat + GROUP BY 分组 获取前3名

select GROUP_CONCAT(t1.id) as ids from (
SELECT t.class, substring_index(GROUP_CONCAT(t.id ORDER BY t.score desc),‘,‘,3) as id from
test t GROUP BY t.class
)t1

得到

注意 是t.id ORDER BY t.score desc 分数从高到低。

上面的语句只是获取到总的id。但是转换为列不太好弄。可以拆分用union all 来搞。

获取第一名

select GROUP_CONCAT(t1.id) as ids from (
SELECT t.class, substring_index(GROUP_CONCAT(t.id ORDER BY t.score desc),‘,‘,3) as id from
test t GROUP BY t.class 
)t1

union all

-- 第二名
SELECT t.class, substring_index(substring_index(GROUP_CONCAT(t.id ORDER BY t.score desc),‘,‘,2),‘,‘,-1) as id from
test t GROUP BY t.class

union all

-- 第三名
SELECT t.class, substring_index(substring_index(GROUP_CONCAT(t.id ORDER BY t.score desc),‘,‘,3),‘,‘,-1) as id from
test t GROUP BY t.class

好了到现在 已经获取到了一个list

用 in 来完成最后的步骤

SELECT class,score,name FROM test where id in(
SELECT id from
(SELECT t.class, substring_index(GROUP_CONCAT(t.id ORDER BY t.score desc),‘,‘,1) as id from
test t GROUP BY t.class
union all  
SELECT t.class, substring_index(substring_index(GROUP_CONCAT(t.id ORDER BY t.score desc),‘,‘,2),‘,‘,-1) as id from
test t GROUP BY t.class
union all
SELECT t.class, substring_index(substring_index(GROUP_CONCAT(t.id ORDER BY t.score desc),‘,‘,3),‘,‘,-1) as id from
test t GROUP BY t.class) t2
) ORDER BY class asc,score desc

最终结果

时间: 2024-11-08 18:59:50

mysql GROUP_CONCAT获取分组的前几名的相关文章

mysql GROUP_CONCAT+ GROUP BY + substring_index获取分组的前几名

mysql方法来源于:http://www.cnblogs.com/jjcc/p/5896588.html ###在网上看到一篇,非常赞的方法 比如说要获取班级的前3名,mysql就可以用GROUP_CONCAT  + GROUP BY + substring_index实现. 考试表 DROP TABLE IF EXISTS `test`;CREATE TABLE `test` (`id` int(11) DEFAULT NULL,`name` varchar(20) DEFAULT NULL

如何在MySQL中查询每个分组的前几名【转】

问题 在工作中常会遇到将数据分组排序的问题,如在考试成绩中,找出每个班级的前五名等. 在orcale等数据库中可以使用partition语句来解决,但在mysql中就比较麻烦了.这次翻译的文章就是专门解决这个问题的 原文地址: How to select the first/least/max row per group in SQL 翻译 在使用SQL的过程中,我们经常遇到这样一类问题:如何找出每个程序最近的日志条目?如何找出每个用户的最高分?在每个分类中最受欢迎的商品是什么?通常这类"找出每

如何在MySQL中实现组内前几名的输出

关于问题 如何查询组内最大的,最小的,大家或许都知道,无非是min.max的函数使用.可是如何在MySQL中查找组内最好的前两个,或者前三个? 什么是相关子查询 在提出对于这个问题的对应方法之前,首先来理解一个概念:相关子查询. 所谓相关子查询,就是其查询的执行依赖于外部查询.多数情况下是子查询的where子句中引用了外部查询的表.执行过程: 从外层查询中取出一个元组,将元组相关列的值传给内层查询 执行内层查询,得到子查询操作的值 外查询根据子查询返回的结果或结果集得到满足条件的行 然后外层查询

mysql查询每个部门/班级前几名

Employee 表包含所有员工信息,每个员工有其对应的 Id, salary 和 department Id . +----+-------+--------+--------------+ | Id | Name | Salary | DepartmentId | +----+-------+--------+--------------+ | 1 | Joe | 70000 | 1 | | 2 | Henry | 80000 | 2 | | 3 | Sam | 60000 | 2 | |

MySQL获取分组后的TOP 1和TOP N记录

有时会碰到一些需求,查询分组后的最大值,最小值所在的整行记录或者分组后的top n行的记录,在一些别的数据库可能有窗口函数可以方面的查出来,但是MySQL没有这些函数,没有直接的方法可以查出来,可通过以下的方法来查询. 准备工作 测试表结构如下: root:test> show create table test1\G *************************** 1. row *************************** Table: test1 Create Table:

mysql分组查询前n条数据

建表: CREATE TABLE hard(id INT,aa varchar(50) ,bb INT,PRIMARY key(id))insert into hard values(1,'a',9)insert into hard values(2,'a',7)insert into hard values(3,'a',8)insert into hard values(4,'a',6) insert into hard values(5,'b',2)insert into hard valu

Hive中分组取前N个值

分享两篇文章,结合看更清楚一点. 背景 假设有一个学生各门课的成绩的表单,应用hive取出每科成绩前100名的学生成绩. 这个就是典型在分组取Top N的需求. 解决思路 对于取出每科成绩前100名的学生成绩,针对学生成绩表,根据学科,成绩做order by排序,然后对排序后的成绩,执行自定义函数row_number(),必须带一个或者多个列参数,如ROW_NUMBER(col1, ....),它的作用是按指定的列进行分组生成行序列.在ROW_NUMBER(a,b) 时,若两条记录的a,b列相同

获取分组后的TOP 1和TOP N记录

MySQL获取分组后的TOP 1和TOP N记录 有时会碰到一些需求,查询分组后的最大值,最小值所在的整行记录或者分组后的top n行的记录,在一些别的数据库可能有窗口函数可以方面的查出来,但是MySQL没有这些函数,没有直接的方法可以查出来,可通过以下的方法来查询. 准备工作 测试表结构如下: root:test> show create table test1\G *************************** 1. row *************************** T

分组取前N记录

分组取前N记录 经常看到问题,如何取出每组的前N条记录.方便大家参考于是便把常见的几种解法列出于下. 问题:有表 如下,要求取出各班前两名(允许并列第二)Table1+----+------+------+-----+| id |SName |ClsNo |Score|+----+------+------+-----+|  1 |AAAA  |  C1  | 67  ||  2 |BBBB  |  C1  | 55  ||  3 |CCCC  |  C1  | 67  ||  4 |DDDD