佳木斯湛栽影视文化发展公司

主頁 > 知識庫 > mysql去重的兩種方法詳解及實(shí)例代碼

mysql去重的兩種方法詳解及實(shí)例代碼

熱門標(biāo)簽:服務(wù)外包 Linux服務(wù)器 鐵路電話系統(tǒng) 地方門戶網(wǎng)站 百度競價排名 呼叫中心市場需求 網(wǎng)站排名優(yōu)化 AI電銷

mysql去重

方法一:    

在使用MySQL時,有時需要查詢出某個字段不重復(fù)的記錄,雖然mysql提供 有distinct這個關(guān)鍵字來過濾掉多余的重復(fù)記錄只保留一條,但往往只用它來返回不重復(fù)記錄的條數(shù),而不是用它來返回不重記錄的所有值。其原因是 distinct只能返回它的目標(biāo)字段,而無法返回其它字段

下面先來看看例子:

   table
  id name
  1 a
  2 b
  3 c
  4 c
  5 b

庫結(jié)構(gòu)大概這樣,這只是一個簡單的例子,實(shí)際情況會復(fù)雜得多。

比如我想用一條語句查詢得到name不重復(fù)的所有數(shù)據(jù),那就必須使用distinct去掉多余的重復(fù)記錄。

select distinct name from table


得到的結(jié)果是:

 name
  a
  b
  c

好像達(dá)到效果了,可是,我想要得到的是id值呢?改一下查詢語句吧:

select distinct name, id from table

結(jié)果會是:

 id name
  1 a
  2 b
  3 c
  4 c
  5 b

distinct怎么沒起作用?作用是起了的,不過他同時作用了兩個字段,也就是必須得id與name都相同的才會被除。。。。。。。

我們再改改查詢語句:

select id, distinct name from table

很遺憾,除了錯誤信息你什么也得不到,distinct必須放在開頭。難到不能把distinct放到where條件里?能報錯。。。。。。。

最終好用的語句如下:

select *, count(distinct name) from table group by name


結(jié)果:

  id name count(distinct name)
  1 a 1
  2 b 1
  3 c 1

最后一項(xiàng)是多余的,不用管就行了,目的達(dá)到。。。。。

哦,對,再順便說一句,group by 必須放在 order by 和 limit之前,不然會報錯。。。。。。。。!OK了

總結(jié)語句:select *, count(distinct name) from (select * from table……等嵌套語句) group by name

方法二:

利用group by

SELECT * FROM( 
select * from customer where user=( 
  SELECT source_user from customer WHERE user='admin') UNION ALL select * from customer where user=( 
  select source_user from customer where user=( 
    SELECT source_user from customer WHERE user='admin')) union ALL select * from customer where user=( 
  select source_user from customer where user=( 
    select source_user from customer where user=( 
      SELECT source_user from customer WHERE user='admin'))) UNION ALL select * from customer where source_user=(/*我的上線的上線的user*/ 
  select user from customer where user=( 
    select source_user from customer where user=( 
      SELECT source_user from customer WHERE user='admin'))) union all select * from customer where source_user=(/*我的上線的上線的上線user*/ 
  select user from customer where user=( 
  select source_user from customer where user=( 
    select source_user from customer where user=( 
      SELECT source_user from customer WHERE user='admin'))))) as alias group by user; 

注意加別名,不然報錯,注意在where語句外面包裝一下,再用group by去重才會生效。

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

您可能感興趣的文章:
  • 解析mysql中:單表distinct、多表group by查詢?nèi)コ貜?fù)記錄
  • mysql SELECT語句去除某個字段的重復(fù)信息
  • MySQL 去除重復(fù)數(shù)據(jù)實(shí)例詳解
  • 一條sql語句完成MySQL去重留一
  • MySQL去重的方法整理
  • mysql 開發(fā)技巧之JOIN 更新和數(shù)據(jù)查重/去重
  • Mysql刪除重復(fù)的數(shù)據(jù) Mysql數(shù)據(jù)去重復(fù)
  • MySQL數(shù)據(jù)表合并去重的簡單實(shí)現(xiàn)方法
  • 將MySQL去重操作優(yōu)化到極致的操作方法
  • mysql自聯(lián)去重的一些筆記記錄
  • mysql優(yōu)化小技巧之去除重復(fù)項(xiàng)實(shí)現(xiàn)方法分析【百萬級數(shù)據(jù)】

標(biāo)簽:仙桃 崇左 湘潭 衡水 湖南 黃山 蘭州 銅川

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《mysql去重的兩種方法詳解及實(shí)例代碼》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266
    田阳县| 晋江市| 高雄市| 同德县| 新河县| 黔西| 茌平县| 五常市| 枣强县| 西宁市| 宁乡县| 宁武县| 墨玉县| 桐乡市| 揭西县| 康马县| 武清区| 盐城市| 比如县| 桐乡市| 凌云县| 托克逊县| 苏尼特右旗| 东兰县| 郓城县| 广东省| 聊城市| 浦江县| 明星| 梁平县| 汤阴县| 辽宁省| 永宁县| 南溪县| 湖口县| 南宫市| 华坪县| 瓦房店市| 茶陵县| 连州市| 五指山市|