大家知道MySQL過濾部分字段重復數據嗎?Archive非常適合存儲大量的獨立的,作為歷史記錄的數據。因為它們不經常被讀取。Archive 擁有高效的插入速度,但其對查詢的支持相對較差。
select distinct可以去掉重復記錄。
disctinct將重復的記錄忽略,但它忽略的是完全一致的重復記錄,而不是其中某個字段重復的記錄,或者說,distinct查詢一個字段時好使,多個字段就不好使。
所以用聚合函數和group by實現
注意:group by只能跟聚合函數搭配使用
例表
ID username password TRDESC ……………………
1 A abcdef QR
2 A abcdef W34
3 A bbbbbb AD
4 B aaaaaa asdf
查詢username和password組合起來的條件不能重復的查詢結果(這個都能重復,不能不說這是個爛攤子)
當username和password重復時,取ID最大的記錄:
select * from mytable where ID in(select max(ID) from mytable group by username,password)
當username和password重復時,取ID最小的記錄:
select * from mytable where ID in(select min(ID) from mytable a group by username,password)
相信大家已經了解MySQL過濾部分字段重復數據了吧!感謝大家對我們網站的支持!
相關推薦:
mysql的replaceinto是什麼呢
想了解更多關於MySQL教程。請點擊精品學習網編程開發欄目!!