如何分组后求天数最多的记录的月份(100分)

  • 主题发起人 主题发起人 ff_ff
  • 开始时间 开始时间
F

ff_ff

Unregistered / Unconfirmed
GUEST, unregistred user!
city &nbsp;月份 &nbsp;一级天数 <br>按城市分组,求一级天数最多的月份?
 
select table.city, table.月份 from table inner join (select city as C,Max(一级天数) as MaxOfDays from table group by city) A &nbsp;on A.C=table.city,A.MaxOfDays=table.一级天数
 
同意楼上<br>也可以写成<br>select city,月份 from table a,(select city,max(一级天数) n from table group by city) as b<br>where a.city=b.city and a.一级天数=b.n
 
后退
顶部