mysql “group by”與”order by”的研究--分類中最新的內容

來源:互聯網
上載者:User

這兩天讓一個資料查詢難了。主要是對group by 理解的不夠深入。才出現這樣的情況
這種需求,我想很多人都遇到過。下面是我類比我的內容表 複製代碼 代碼如下:CREATE TABLE `test` (
`id` INT(10) NOT NULL AUTO_INCREMENT,
`name` VARCHAR(255) NOT NULL,
`category_id` INT(10) NOT NULL,
`date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
)
ENGINE=MyISAM
ROW_FORMAT=DEFAULT;
INSERT INTO `test` (`id`, `name`, `category_id`, `date`)
VALUES
(1, 'aaa', 1, '2010-06-10 19:14:37'),
(2, 'bbb', 2, '2010-06-10 19:14:55'),
(3, 'ccc', 1, '2010-06-10 19:16:02'),
(4, 'ddd', 1, '2010-06-10 19:16:15'),
(5, 'eee', 2, '2010-06-10 19:16:35');


我現在需要取出每個分類中最新的內容複製代碼 代碼如下:select * from test group by category_id order by `date`

結果如下

明顯。這不是我想要的資料,原因是msyql已經的執行順序是

引用寫的順序:select ... from... where.... group by... having... order by..
執行順序:from... where...group by... having.... select ... order by...

所以在order by拿到的結果裡已經是分組的完的最後結果。
由from到where的結果如下的內容。

到group by時就得到了根據category_id分出來的多個小組


到了select的時候,只從上面的每個組裡取第一條資訊結果會如下

即使order by也只是從上面的結果裡進行排序。並不是每個分類的最新資訊。
回到我的目的上 --分類中最新的資訊
根據上面的分析,group by到select時只取到分組裡的第一條資訊。有兩個解決方案
1,where+group by(對小組進行排序)
2,從form返回的資料下手腳(即用子查詢)

由where+group by的解決方案
對group by裡的小組進行排序的函數我只查到group_concat()可以進行排序,但group_concat的作用是將小組裡的欄位裡的值進行串聯起來。select group_concat(id order by `date` desc) from `test` group by category_id


再改進一下select * from `test` where id in(select SUBSTRING_INDEX(group_concat(id order by `date` desc),',',1) from `test` group by category_id ) order by `date` desc

子查詢解決方案select * from (select * from `test` order by `date` desc) `temp` group by category_id order by `date` desc

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.