zoukankan      html  css  js  c++  java
  • 关于在left join的on子句中限制左边表的取值时出现非期望的结果

    使用的SQL大概是这样的:

    select * from A left join B on A.id=B.id and A.id>10; --错误的使用

    我们期望的结果集应该是 A中的id>10,但是实际上A.id>10 这个限制条件并没有起作用。

    应该改成如下的这种形式:

    select * from A left join B on A.id=B.id where A.id>10;--正确的使用

    这是在oracle的官方文档中找到的相关说明:

    left outer join
    The result of a left outer join for table A and B contains all records of the left table A,
    even if the join condition does not match a record in the right table B. For example, if
    you perform a left outer join of employees (left) to departments (right), and if some
    employees are not in a department, then the query returns rows from employees
    with no matches in departments.


    这是在 《Database System Concepts》这本书中找到的相关说明:

    The right outer join is symmetric with the left outer join: It pads tuples
    from the right relation that did not match any from the left relation with nulls and
    adds them to the result of the natural join. In Figure 6.18, tuple (58583, null, null,
    null, null, Califieri, History, 62000), is such a tuple. Thus, all information from the
    right relation is present in the result of the right outer join.

    大致的意思是,left join的结果集一定会包含左边表的所有记录。同理,right join一定会包含右边表的所有记录。

    所以,使用时应该只在on子句中包含关联条件,单独对某个表的限制应该放到where子句中。

    只是不知道,如果在left join的on子句中单独限制右边的表会不会有利于减少中间表的大小。

  • 相关阅读:
    Java理论-Java高级
    Java理论-Java基础
    Java理论-JVM
    Nginx的使用总结
    修改tomcat端口号
    测试目录
    常用的设计模式汇总,超详细!
    Java高级程序员(5年左右)面试的题目集
    集合类--最详细的面试宝典--看这篇就够用了(java 1.8)
    Java面试宝典(2020版)
  • 原文地址:https://www.cnblogs.com/vanwoos/p/5948327.html
Copyright © 2011-2022 走看看