使用mysql的disctinct group by查詢不重複記錄_Mysql

來源:互聯網
上載者:User
有個需求,一直沒有解決,在google上找了半天,給出的方案沒有一個能用了,最後鬼使神差搞定了。
   是這樣的,假設一個表:

id   f_id    value   
1     2         a   
2     2         b   
3     5         c   
4     9         c   
5     9         a   
6     6         d  

id   f_id    value
1     2         a
2     2         b
3     5         c
4     9         c
5     9         a
6     6         d
   id是主鍵,f_id是外鍵,我需要獲得不重複的外鍵f_id的資料,如果用group by 或者distinct很容易搞定


select f_id from table group by f_id
select distinct f_id from table
   但如果再想在結果中得到id值的話,不管怎麼都會亂。比如我想在結果中用id進行排序,諸如”select distinct f_id, id from table order by id desc”完全白費。在google上看了大量的例子,發現需要在select中對id做手腳,讓mysql知道除了f_id外,對id應該進行如何的操作。諸如Max, Min, Avg,Sun..都是可以的,於是變成以下的代碼就搞定了……

select f_id, max(id) as id from table group by f_id order by id desc
   搞定,網上有個文章很接近答案,但是他沒有”as id”,導致在我的mysql中執行結果有誤,呵呵。
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.