zoukankan      html  css  js  c++  java
  • 关于联合查询与子查询的查询结果不同点_随笔

    测试表数据如下:

    sql:

    select * from zhubiaofushu where id in 
    (select fid from zhubiao)
    
    select  * from zhubiao t inner join zhubiaofushu t1
    on t.fid= t1.id
    
    select  t1.* from zhubiao t inner join zhubiaofushu t1
    on t.fid= t1.id
    
    select distinct t1.* from zhubiao t inner join zhubiaofushu t1
    on t.fid= t1.id
    order by t1.id asc

    按以上顺序执行结果如下:

    ID                   NAME                 
    -------------------- -------------------- 
    1                    1班                  
    2                    2班                  
    
    2 rows selected
    
    ID                   NAME                 FID                  ID                   NAME                 
    -------------------- -------------------- -------------------- -------------------- -------------------- 
    1                    小王                 1                    1                    1班                  
    2                    小唐                 1                    1                    1班                  
    3                    小宇                 2                    2                    2班                  
    4                    小丹                 2                    2                    2班                  
    
    4 rows selected
    
    ID                   NAME                 
    -------------------- -------------------- 
    1                    1班                  
    1                    1班                  
    2                    2班                  
    2                    2班                  
    
    4 rows selected
    
    ID                   NAME                 
    -------------------- -------------------- 
    1                    1班                  
    2                    2班                  
    
    2 rows selected
    View Code

     可以看到,第三条sql文执行结果中有重复数据,显然不是想要达到的效果。

    所以,在多表连接时,如果只需要其中某一个表的列的值,可以优先考虑子查询。当使用联合查询时,需要使用distinct关键字,并注意排序,因为distinct貌似是默认降序排列的。

    联合查询产生重复数据的原理:因为【zhubiao】中存在多对1的数据,生成的笛卡尔积中关于【zhubiaofushu】中有重复数据,所以,在此基础上的【t1.*】获取的数据重复

  • 相关阅读:
    Linux学习 -- Shell编程 -- 字符截取命令
    Linux学习 -- Shell编程 -- 正则表达式
    Linux学习 -- Shell基础 -- Bash变量
    Linux学习 -- Shell基础 -- Bash基本功能
    Linux学习 -- Shell基础 -- 概述
    Linux学习 -- 备份与恢复
    Linux学习 -- 启动管理
    Linux学习 -- 日志管理
    chapter9_3 协同程序实现迭代器
    chapter9_2 管道与过滤器
  • 原文地址:https://www.cnblogs.com/jkgyu/p/4815725.html
Copyright © 2011-2022 走看看