Mysql按欄位分組取最大值記錄

2021-07-04 19:25:54 字數 805 閱讀 6491

在實際工作中,我們經常碰到這樣的工作情況,取出使用者訂單中給定使用者的最大單筆購買金額,此時,可以用到mysql的按字段分組取最大值,操作如下:

表(user_order)結構如下,我的操作是取出uid對應的最大的buy_time

方法0:

select uid,max(buy_time) from user_order group by uid方法一

: select uid,buy_time from (select uid,buy_time from user_order order by buy_time desc) as a group by a.uid

方法二:

select a.* from user_order as a where buy_time = (select max(buy_time) fromuser_order where a.uid=uid)

方法三:

select a.* from user_order as a where not exists (select * from user_order where uid=a.uid_id and buy_time>a.buy_time)

方法四:

select a.* from user_order as a where exists (select count(*) from user_order where uid=a.uid and buy_time>a.buy_time count(*)=0)

分組取最大值統計,過濾

匯率儲存,千分之5以內的,按照日期,幣種,匯率,匯率浮動分組。首先分組,按照日期,幣種,匯率,匯率浮動,然後分組統計 日期,幣種,匯率 1的並且,浮動範圍在千分5以內。如果有2條匯率,一條記錄大於千分之5,一條記錄小於千分之5,分組統計數目就大於1,就過濾掉。如果匯率正常的且有多條,然後取max 最...

如何取分組最大值記錄

分組最大值記錄 比如序號 名稱 數量 1 a 20 2 a 10 1 b 20 2 b 40 3 b 10 1 c 20 2 c 40 子查詢 select from 表 where 序號,名稱 in select max 序號 名稱 from 表 group by 名稱 分析函式 select 序...

如何取分組最大值記錄

分組最大值記錄 比如序號 名稱 數量 1 a 20 2 a 10 1 b 20 2 b 40 3 b 10 1 c 20 2 c 40 子查詢 select from 表 where 序號,名稱 in select max 序號 名稱 from 表 group by 名稱 分析函式 select 序...