SQL查詢每個站點消費金額最高的人

2021-09-22 16:25:23 字數 763 閱讀 9211

select

`order`.takestation,

`order`.`name`,

m.maxtotal,

`order`.total

from

( select

`order`.takestation,

max(`order`.total) as maxtotal

from

`order`

group by

`order`.takestation

) mjoin `order` on m.takestation=`order`.takestation

where m.maxtotal = `order`.total

order by

`order`.takestation

#查詢每個站點消費金額最高的人

2537電商工場站 xx 322 322

h108廣場站 aaa 284 284

丁蘭智慧型小鎮站 bbb 234 234

萬科溪望門口地面停車場站 ccc 284 284

萬科良渚文化村食街站 ddd 239 239

萬科良渚文化村食街站 eee 239 239

萬科良渚文化村食街站 fff 239 239

上塘路百安居站 ggg 239 239

上塘路百安居站 hhh 239 239

上塘路百安居站 jjj 239 239

上塘路百安居站 kkk 239 239

sql查詢每個班上成績最高的學生資訊

sql查詢每個班上成績最高的學生資訊 資料庫表和資料準備 if exists select from sysobjects where id object id classinfo and objectproperty id,isusertable 1 drop table classinfo cr...

sql查詢每門課程成績最高的學生

給出資料庫 sco 如下圖 查出每門課程成績最高的學生 1 select b.id,b.kemu,b.name,b.chengji 2from select kemu,max chengji maxc 3from sco group bykemu a,sco b 4where a.kemu b.ke...

Sql 查詢每個組的前3條記錄

表 product 列 prdid,prdname,userid 乙個userid有多個product的資訊 查詢每個user的3種產品的資訊 select from product a where a.prdid in select top 3 prdid from product where u...