热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

mysqlGROUP_CONCAT获取分组的前几名

如果是oracle应该很容易用Partition By实现。比如说要获取班级的前3名,就可以用GROUP_CONCAT+ GROUPBY + substring_index实现。考

如果是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

 最终结果

技术分享

mysql GROUP_CONCAT获取分组的前几名


推荐阅读
  • Maven + Spring + MyBatis + MySQL 环境搭建与实例解析
    本文详细介绍如何使用MySQL数据库进行环境搭建,包括创建数据库表并插入示例数据。随后,逐步指导如何配置Maven项目,整合Spring框架与MyBatis,实现高效的数据访问。 ... [详细]
  • 在1995年,Simon Plouffe 发现了一种特殊的求和方法来表示某些常数。两年后,Bailey 和 Borwein 在他们的论文中发表了这一发现,这种方法被命名为 Bailey-Borwein-Plouffe (BBP) 公式。该问题要求计算圆周率 π 的第 n 个十六进制数字。 ... [详细]
  • 二维码的实现与应用
    本文介绍了二维码的基本概念、分类及其优缺点,并详细描述了如何使用Java编程语言结合第三方库(如ZXing和qrcode.jar)来实现二维码的生成与解析。 ... [详细]
  • 本文介绍了如何通过C#语言调用动态链接库(DLL)中的函数来实现IC卡的基本操作,包括初始化设备、设置密码模式、获取设备状态等,并详细展示了将TextBox中的数据写入IC卡的具体实现方法。 ... [详细]
  • 本文将从基础概念入手,详细探讨SpringMVC框架中DispatcherServlet如何通过HandlerMapping进行请求分发,以及其背后的源码实现细节。 ... [详细]
  • 本文详细介绍了在Linux操作系统上安装和部署MySQL数据库的过程,包括必要的环境准备、安装步骤、配置优化及安全设置等内容。 ... [详细]
  • 本文详细探讨了在Web开发中常见的UTF-8编码问题及其解决方案,包括HTML页面、PHP脚本、MySQL数据库以及JavaScript和Flash应用中的乱码问题。 ... [详细]
  • SQL Server 存储过程实践任务(第二部分)
    本文档详细介绍了三个SQL Server存储过程的创建与使用方法,包括统计特定类型客房的入住人数、根据房间号查询客房详情以及删除特定类型的客房记录。 ... [详细]
  • 本文详细介绍了Oracle 11g中的创建表空间的方法,以及如何设置客户端和服务端的基本配置,包括用户管理、环境变量配置等。 ... [详细]
  • 本文介绍了SIP(Session Initiation Protocol,会话发起协议)的基本概念、功能、消息格式及其实现机制。SIP是一种在IP网络上用于建立、管理和终止多媒体通信会话的应用层协议。 ... [详细]
  • 我的读书清单(持续更新)201705311.《一千零一夜》2006(四五年级)2.《中华上下五千年》2008(初一)3.《鲁滨孙漂流记》2008(初二)4.《钢铁是怎样炼成的》20 ... [详细]
  • MySQL InnoDB 存储引擎索引机制详解
    本文深入探讨了MySQL InnoDB存储引擎中的索引技术,包括索引的基本概念、数据结构与算法、B+树的特性及其在数据库中的应用,以及索引优化策略。 ... [详细]
  • 如何将955万数据表的17秒SQL查询优化至300毫秒
    本文详细介绍了通过优化SQL查询策略,成功将一张包含955万条记录的财务流水表的查询时间从17秒缩短至300毫秒的方法。文章不仅提供了具体的SQL优化技巧,还深入探讨了背后的数据库原理。 ... [详细]
  • 数据类型--char一、char1.1char占用2个字节char取值范围:【0~65535】char采用unicode编码方式char类型的字面量用单引号括起来char可以存储一 ... [详细]
  • 1#include2#defineM1000103#defineRGregister4#defineinf0x3f3f3f3f5usingnamespacestd;6boolrev ... [详细]
author-avatar
angel2502899287_238
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有