MySQL的distinct:去重
生活随笔
收集整理的這篇文章主要介紹了
MySQL的distinct:去重
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
?
SELECT * FROM `name`;-- 查詢出三條 ?去除了重復的 select distinct name from name;-- 會查詢出五條 ?其實是distinct(name,id) select distinct name,id from name;-- 報錯 distinct必須放在頭部 select id,DISTINCT name from name;如果要查詢不重復的記錄,有時候也可以用group by : select id,name from user group by name; distinct有些浪費資源,使用group by比distinct都要好!?
總結
以上是生活随笔為你收集整理的MySQL的distinct:去重的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: CSS选取第n个元素 :nth-chil
- 下一篇: 刘志丹与罗宾汉阿咯琉斯的相似之处