搜尋
首頁資料庫mysql教程[转] 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>*/
陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
MySQL字符串類型:存儲,性能和最佳實踐MySQL字符串類型:存儲,性能和最佳實踐May 10, 2025 am 12:02 AM

mySqlStringTypesimpactStorageAndPerformanCeaseAsfollows:1)長度,始終使用theSamestoragespace,whatcanbefasterbutlessspace-felfficity.2)varCharisvariable varcharisvariable length,morespace-morespace-morespace-effficitybuteftife buteftife butfority butfority textifforlyslower.3)

了解MySQL字符串類型:VARCHAR,文本,char等了解MySQL字符串類型:VARCHAR,文本,char等May 10, 2025 am 12:02 AM

mysqlStringTypesIncludeVarChar,文本,char,Enum和set.1)varCharisVersAtileForvariable-lengthStringStringSuptoPuptOuptoPepePecifiedLimit.2)textisidealforlargetStortStorStoverStoverStorageWithoutAutAdefinedLength.3)charlisfixed-lenftenge,for forConsistentDatalikeCodes.4)

MySQL中的字符串數據類型是什麼?MySQL中的字符串數據類型是什麼?May 10, 2025 am 12:01 AM

MySQLoffersvariousstringdatatypes:1)CHARforfixed-lengthstrings,2)VARCHARforvariable-lengthtext,3)BINARYandVARBINARYforbinarydata,4)BLOBandTEXTforlargedata,and5)ENUMandSETforcontrolledinput.Eachtypehasspecificusesandperformancecharacteristics,sochoose

如何向新的MySQL用戶授予權限如何向新的MySQL用戶授予權限May 09, 2025 am 12:16 AM

TograntpermissionstonewMySQLusers,followthesesteps:1)AccessMySQLasauserwithsufficientprivileges,2)CreateanewuserwiththeCREATEUSERcommand,3)UsetheGRANTcommandtospecifypermissionslikeSELECT,INSERT,UPDATE,orALLPRIVILEGESonspecificdatabasesortables,and4)

如何在MySQL中添加用戶:逐步指南如何在MySQL中添加用戶:逐步指南May 09, 2025 am 12:14 AM

toadduserInmysqleffect和securly,跟隨台詞:1)USEtheCreateUserStattoDaneWuser,指定thehostandastrongpassword.2)GrantNecterAryAryaryPrivilegesSustherthing privilegesgeStatement,usifementStatement,adheringtotheprinciplelastprefilegege.3)

mysql:添加具有復雜權限的新用戶mysql:添加具有復雜權限的新用戶May 09, 2025 am 12:09 AM

toaddanewuserwithcomplexpermissionsinmysql,loldtheSesteps:1)創建eTheEserWithCreateuser'newuser'newuser'@''localhost'Indedify'pa ssword';。 2)GrantreadAccesstoalltablesin'mydatabase'withGrantSelectOnMyDatabase.to'newuser'@'localhost';。 3)GrantWriteAccessto'

mysql:字符串數據類型和coltrationsmysql:字符串數據類型和coltrationsMay 09, 2025 am 12:08 AM

MySQL中的字符串數據類型包括CHAR、VARCHAR、BINARY、VARBINARY、BLOB、TEXT,排序規則(Collations)決定了字符串的比較和排序方式。 1.CHAR適合固定長度字符串,VARCHAR適合可變長度字符串。 2.BINARY和VARBINARY用於二進制數據,BLOB和TEXT用於大對像數據。 3.排序規則如utf8mb4_unicode_ci忽略大小寫,適合用戶名;utf8mb4_bin區分大小寫,適合需要精確比較的字段。

MySQL:我應該在Varchars上使用什麼長度?MySQL:我應該在Varchars上使用什麼長度?May 09, 2025 am 12:06 AM

最佳的MySQLVARCHAR列長度選擇應基於數據分析、考慮未來增長、評估性能影響及字符集需求。 1)分析數據以確定典型長度;2)預留未來擴展空間;3)注意大長度對性能的影響;4)考慮字符集對存儲的影響。通過這些步驟,可以優化數據庫的效率和擴展性。

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

VSCode Windows 64位元 下載

VSCode Windows 64位元 下載

微軟推出的免費、功能強大的一款IDE編輯器

SublimeText3 Linux新版

SublimeText3 Linux新版

SublimeText3 Linux最新版

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser是一個安全的瀏覽器環境,安全地進行線上考試。該軟體將任何電腦變成一個安全的工作站。它控制對任何實用工具的訪問,並防止學生使用未經授權的資源。