站保站

服务市场
  • 网站市场
  • 单机游戏
  • 平台大厅
  • 转让市场
  • 发卡市场
  • 广告市场
  • 下载市场
  • 收录市场
  • 本站平台
    平台客服
    微信Q群



    平台微博/weibo    平台微信/公众号    平台抖音/快手   
    曝光台    保障    地图   
    上传资源 快速赚钱
    站保站    登录      |  注册  |  

    只需一步,快速开始!

     找回密码   |   协议
    热门搜索: 网站开发 App报毒 挖矿源码 代办资质

    mysql去重复关键字distinct的用法和distinct去重复失效问题

    • 时间:2020-10-27 19:51 编辑:喝一杯82年的java压压惊 来源: 阅读:101
    • 扫一扫,手机访问
    摘要:

    mysql去重复关键字distinct的用法和distinct去重复失效问题

    一、distinct是什么?

    distinct是mysql去重复关键字。
    
    • 1

    二、使用规则

    1.distinct关键字必须在select后面第一位

    表里所有数据的去重复
    
    • 1
    select
        distinct comptemplate.*
        from comptemplate
    
    • 1
    • 2
    • 3
    表里所有某个字段的数据去重复
    
    • 1
    select
        distinct comptemplate.comptemplate_name
        from comptemplate
    
    • 1
    • 2
    • 3

    2.distinct去重复的依据

    	distinct去重复的依据是从select到from里的所有字段,
    也就是每一行的数据和所有的数据做对比,如果重复则去除掉。
    
    • 1
    • 2

    三.去重复失效

    1.distinct关键字错误理解的sql使用

     多表关联的错误理解使用,想对comptemplate表的所有重复数据
     去重,查出来的数据如下。
    
    • 1
    • 2
       select
       distinct comptemplate.*,tubetemplate.*
       from comptemplate
       left join extemplate_tube_relation on extemplate_tube_relation.comptemplate_id = comptemplate.comptemplate_id
       left join tubetemplate on extemplate_tube_relation.tubetemplate_id = tubetemplate.tubetemplate_id
    
    • 1
    • 2
    • 3
    • 4
    • 5

    在这里插入图片描述

    2.distinct关键字正确理解的sql使用

    多表关联的正确理解使用,想对comptemplate表的所有重复数据
    去重,查出来的数据如下。
    
    • 1
    • 2
       select
       distinct comptemplate.*
       from comptemplate
       left join extemplate_tube_relation on extemplate_tube_relation.comptemplate_id = comptemplate.comptemplate_id
       left join tubetemplate on extemplate_tube_relation.tubetemplate_id = tubetemplate.tubetemplate_id
    
    • 1
    • 2
    • 3
    • 4
    • 5

    在这里插入图片描述

    3.对比两个使用sql

    在select中多了tubetemplate.*,导致无法去重复comptemplate.*。
    原因是因为distinct是对一行去重复,也就是select到from里的所有字段,
    每一行的数据和所有的数据做对比,如果重复则去除掉。
    
    • 1
    • 2
    • 3

    四.注意

    	如果表数据存在空格不一的情况,也是无法去重复的!
    
    • 1
    • 全部评论(0)
    • 最新

    信息加载中,请等待

    微信客服(速回)

    微信客服(慢回)



    企业微信客服二维码
    联系我们
    平台客服: 平台QQ客服

    平台电话:400电话迁移中!

    平台邮箱:28292383@qq.com

    工作时间:周一至周五:早10:00 晚:18:00

    营业执照     网站ICP备案:鲁ICP备20027607号-1     鲁公网安备:37068702000078号     增值电信业务经营许可证、在线数据与交易处理业务许可证:鲁B2-20200681      © 2016-2024 站保站  https://www.zhanbaozhan.com/ 版权所有!      平台规范:   关于我们   广告合作   隐私条款   免责声明   法律声明   服务条款   网站地图   平台工单!