search
HomeDatabaseMysql Tutorial[转] mysql分组取每组前几条记录(排名)_MySQL

--按某一字段分组取最大(小)值所在行的数据

/*<br>数据如下:<br>name val memo<br>a    2   a2(a的第二个值)<br>a    1   a1--a的第一个值<br>a    3   a3:a的第三个值<br>b    1   b1--b的第一个值<br>b    3   b3:b的第三个值<br>b    2   b2b2b2b2<br>b    4   b4b4<br>b    5   b5b5b5b5b5<br>*/

--创建表并插入数据:

create table tb(name varchar(10),val int,memo varchar(20))<br>insert into tb values('a',    2,   'a2(a的第二个值)')<br>insert into tb values('a',    1,   'a1--a的第一个值')<br>insert into tb values('a',    3,   'a3:a的第三个值')<br>insert into tb values('b',    1,   'b1--b的第一个值')<br>insert into tb values('b',    3,   'b3:b的第三个值')<br>insert into tb values('b',    2,   'b2b2b2b2')<br>insert into tb values('b',    4,   'b4b4')<br>insert into tb values('b',    5,   'b5b5b5b5b5')<br>go

--一、按name分组取val最大的值所在行的数据。

--方法1:<br>select a.* from tb a where val = (select max(val) from tb where name = a.name) order by a.name<br>--方法2:<br>select a.* from tb a where not exists(select 1 from tb where name = a.name and val > a.val)<br>--方法3:<br>select a.* from tb a,(select name,max(val) val from tb group by name) b where a.name = b.name and a.val = b.val order by a.name<br>--方法4:<br>select a.* from tb a inner join (select name , max(val) val from tb group by name) b on a.name = b.name and a.val = b.val order by a.name<br>--方法5<br>select a.* from tb a where 1 > (select count(*) from tb where name = a.name and val > a.val ) order by a.name<br>/*<br>name       val         memo                <br>---------- ----------- --------------------<br>a          3           a3:a的第三个值<br>b          5           b5b5b5b5b5<br>*/

--二、按name分组取val最小的值所在行的数据。

--方法1:<br>select a.* from tb a where val = (select min(val) from tb where name = a.name) order by a.name<br>--方法2:<br>select a.* from tb a where not exists(select 1 from tb where name = a.name and val --方法3:<br>select a.* from tb a,(select name,min(val) val from tb group by name) b where a.name = b.name and a.val = b.val order by a.name<br>--方法4:<br>select a.* from tb a inner join (select name , min(val) val from tb group by name) b on a.name = b.name and a.val = b.val order by a.name<br>--方法5<br>select a.* from tb a where 1 > (select count(*) from tb where name = a.name and val /*<br>name       val         memo                <br>---------- ----------- --------------------<br>a          1           a1--a的第一个值<br>b          1           b1--b的第一个值<br>*/

--三、按name分组取第一次出现的行所在的数据。

select a.* from tb a where val = (select top 1 val from tb where name = a.name) order by a.name<br>/*<br>name       val         memo                <br>---------- ----------- --------------------<br>a          2           a2(a的第二个值)<br>b          1           b1--b的第一个值<br>*/

--四、按name分组随机取一条数据。

select a.* from tb a where val = (select top 1 val from tb where name = a.name order by newid()) order by a.name<br>/*<br>name       val         memo                <br>---------- ----------- --------------------<br>a          1           a1--a的第一个值<br>b          5           b5b5b5b5b5<br>*/

--五、按name分组取最小的两个(N个)val

select a.* from tb a where 2 > (select count(*) from tb where name = a.name and val select a.* from tb a where val in (select top 2 val from tb where name=a.name order by val) order by a.name,a.val<br>select a.* from tb a where exists (select count(*) from tb where name = a.name and val /*<br>name       val         memo                <br>---------- ----------- --------------------<br>a          1           a1--a的第一个值<br>a          2           a2(a的第二个值)<br>b          1           b1--b的第一个值<br>b          2           b2b2b2b2<br>*/

--六、按name分组取最大的两个(N个)val

select a.* from tb a where 2 > (select count(*) from tb where name = a.name and val > a.val ) order by a.name,a.val<br>select a.* from tb a where val in (select top 2 val from tb where name=a.name order by val desc) order by a.name,a.val<br>select a.* from tb a where exists (select count(*) from tb where name = a.name and val > a.val having Count(*) /*<br>name       val         memo                <br>---------- ----------- --------------------<br>a          2           a2(a的第二个值)<br>a          3           a3:a的第三个值<br>b          4           b4b4<br>b          5           b5b5b5b5b5<br>*/

--七,假如整行数据有重复,所有的列都相同。

/*<br>数据如下:<br>name val memo<br>a    2   a2(a的第二个值)<br>a    1   a1--a的第一个值<br>a    1   a1--a的第一个值<br>a    3   a3:a的第三个值<br>a    3   a3:a的第三个值<br>b    1   b1--b的第一个值<br>b    3   b3:b的第三个值<br>b    2   b2b2b2b2<br>b    4   b4b4<br>b    5   b5b5b5b5b5<br>*/

--在sql server 2000中只能用一个临时表来解决,生成一个自增列,先对val取最大或最小,然后再通过自增列来取数据。

--创建表并插入数据:

create table tb(name varchar(10),val int,memo varchar(20))<br>insert into tb values('a',    2,   'a2(a的第二个值)')<br>insert into tb values('a',    1,   'a1--a的第一个值')<br>insert into tb values('a',    1,   'a1--a的第一个值')<br>insert into tb values('a',    3,   'a3:a的第三个值')<br>insert into tb values('a',    3,   'a3:a的第三个值')<br>insert into tb values('b',    1,   'b1--b的第一个值')<br>insert into tb values('b',    3,   'b3:b的第三个值')<br>insert into tb values('b',    2,   'b2b2b2b2')<br>insert into tb values('b',    4,   'b4b4')<br>insert into tb values('b',    5,   'b5b5b5b5b5')<br>go<br>select * , px = identity(int,1,1) into tmp from tb<br>select m.name,m.val,m.memo from<br>(<br>select t.* from tmp t where val = (select min(val) from tmp where name = t.name)<br>) m where px = (select min(px) from<br>(<br>select t.* from tmp t where val = (select min(val) from tmp where name = t.name)<br>) n where n.name = m.name)<br>drop table tb,tmp<br>/*<br>name       val         memo<br>---------- ----------- --------------------<br>a          1           a1--a的第一个值<br>b          1           b1--b的第一个值<br>(2 行受影响)<br>*/

--在sql server 2005中可以使用row_number函数,不需要使用临时表。

--创建表并插入数据:

create table tb(name varchar(10),val int,memo varchar(20))<br>insert into tb values('a',    2,   'a2(a的第二个值)')<br>insert into tb values('a',    1,   'a1--a的第一个值')<br>insert into tb values('a',    1,   'a1--a的第一个值')<br>insert into tb values('a',    3,   'a3:a的第三个值')<br>insert into tb values('a',    3,   'a3:a的第三个值')<br>insert into tb values('b',    1,   'b1--b的第一个值')<br>insert into tb values('b',    3,   'b3:b的第三个值')<br>insert into tb values('b',    2,   'b2b2b2b2')<br>insert into tb values('b',    4,   'b4b4')<br>insert into tb values('b',    5,   'b5b5b5b5b5')<br>go<br>select m.name,m.val,m.memo from<br>(<br>select * , px = row_number() over(order by name , val) from tb<br>) m where px = (select min(px) from<br>(<br>select * , px = row_number() over(order by name , val) from tb<br>) n where n.name = m.name)<br>drop table tb<br>/*<br>name       val         memo<br>---------- ----------- --------------------<br>a          1           a1--a的第一个值<br>b          1           b1--b的第一个值<br>(2 行受影响)<br>*/
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
图文详解mysql架构原理图文详解mysql架构原理May 17, 2022 pm 05:54 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于架构原理的相关内容,MySQL Server架构自顶向下大致可以分网络连接层、服务层、存储引擎层和系统文件层,下面一起来看一下,希望对大家有帮助。

mysql怎么去掉第一个字符mysql怎么去掉第一个字符May 19, 2022 am 10:21 AM

方法:1、利用right函数,语法为“update 表名 set 指定字段 = right(指定字段, length(指定字段)-1)...”;2、利用substring函数,语法为“select substring(指定字段,2)..”。

mysql的msi与zip版本有什么区别mysql的msi与zip版本有什么区别May 16, 2022 pm 04:33 PM

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

mysql怎么替换换行符mysql怎么替换换行符Apr 18, 2022 pm 03:14 PM

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

mysql怎么将varchar转换为int类型mysql怎么将varchar转换为int类型May 12, 2022 pm 04:51 PM

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

MySQL复制技术之异步复制和半同步复制MySQL复制技术之异步复制和半同步复制Apr 25, 2022 pm 07:21 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

带你把MySQL索引吃透了带你把MySQL索引吃透了Apr 22, 2022 am 11:48 AM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

mysql怎么判断是否是数字类型mysql怎么判断是否是数字类型May 16, 2022 am 10:09 AM

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft