程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> 查詢數據的最大排序問題(只能用一條語句寫)

查詢數據的最大排序問題(只能用一條語句寫)

編輯:關於MYSQL數據庫
CREATE TABLE hard (qu char (11) ,co char (11) ,je numeric(3, 0))

insert into hard values ('A','1',3)
insert into hard values ('A','2',4)
insert into hard values ('A','4',2)
insert into hard values ('A','6',9)
insert into hard values ('B','1',4)
insert into hard values ('B','2',5)
insert into hard values ('B','3',6)
insert into hard values ('C','3',4)
insert into hard values ('C','6',7)
insert into hard values ('C','2',3)

要求查詢出來的結果如下:

qu co je
----------- ----------- -----
A 6 9
A 2 4
B 3 6
B 2 5
C 6 7
C 3 4

就是要按qu分組,每組中取je最大的前2位!!
而且只能用一句sql語句!!!

select * from hard a where (select count(*) from hard b
where a.qu=b.qu and b.je>=a.je)<=2
ORDER BY qu,je DESC

選出一條記錄, 然後做循環.
這麼寫會好懂一些?
select * from hard a where je in (select top 2 je from hard b where a.qu=b.qu order by je)

可以這樣寫:
select * from hard a where je in (select top 2 je from hard b where a.qu=b.qu order by je desc)
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved