MySQL分組然後取每個分組中按照某些欄位排序的topN條資料,mysqltopn
MySQL分組然後取每個分組中按照某些欄位排序的topN條資料
建表
CREATE TABLE `t` ( `a` int(11) DEFAULT NULL, `b` int(11) DEFAULT NULL, `c` int(11) DEFAULT NULL, `itime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP) ENGINE=InnoDB DEFAULT CHARSET=utf8;
插入測試資料
INSERT INTO t(`a`, `b`, `c`, `itime`) VALUES ('1', '1', '1', '2014-12-04 19:07:01');INSERT INTO t(`a`, `b`, `c`, `itime`) VALUES ('1', '1', '2', '2014-12-04 19:07:02');INSERT INTO t (`a`, `b`, `c`, `itime`) VALUES ('1', '1', '3', '2014-12-04 19:07:03');INSERT INTO t (`a`, `b`, `c`, `itime`) VALUES ('1', '1', '4', '2014-12-04 19:07:04');INSERT INTO t(`a`, `b`, `c`, `itime`) VALUES ('1', '2', '1', '2014-12-04 19:07:01');INSERT INTO t (`a`, `b`, `c`, `itime`) VALUES ('1', '2', '2', '2014-12-04 19:07:02');INSERT INTO t(`a`, `b`, `c`, `itime`) VALUES ('1', '2', '3', '2014-12-04 19:07:03');INSERT INTO t (`a`, `b`, `c`, `itime`) VALUES ('1', '2', '4', '2014-12-04 19:07:04');INSERT INTO t(`a`, `b`, `c`, `itime`) VALUES ('1', '2', '5', '2014-12-04 19:07:05');INSERT INTO t (`a`, `b`, `c`, `itime`) VALUES ('1', '2', '6', '2014-12-04 19:07:06');
按照a,b分組,並且按照itime欄位倒敘排列,取每組的top3
SELECTt.a, t.b,substring_index(group_concat(IFNULL(t.c,0)ORDER BYt.itime DESC),",",3) c,substring_index(group_concat(t.itimeORDER BYt.itime DESC),",",3) timeFROMt tGROUP BYt.a ,t.b;
結果集如下:
注意:
一、此方法需要上層應用再做一次處理:上層應用取出結果集以後,將資料按照逗號,再切分成topN份資料,(注意,有可能有些組沒有topN份資料)
二、IFNULL判斷很重要,否則MySQL會將下一條資料放進去。如果c列為NULL,則設定一個預設值為0,防止將第四條資料(1)放進去。
是沒有IFNULL的錯誤答案:
PS:如果不是萬不得已,無法實現此功能。不建議在MySQL中使用如此複雜的SQL語句。
如果你有更好的寫法,請回複一下,讓我知道,謝謝