• oracle 中(+)是什么意思


    原文内容:
    oracle中的(+)是一种特殊的用法,(+)表示外连接,并且总是放在非主表的一方。

    例如

    左外连接:select A.a,B.a from A LEFT JOIN B ON A.b=B.b;

    等价于select A.a,B.a from A,B where A.b = B.b(+);

    再举个例子,这次是右外连接:select A.a,B.a from A RIGHT JOIN B ON A.b=B.b;

    等价于select A.a,B.a from A,B where A.b (+) = B.b;

    个人补充:

    数据表的连接有:
    1、内连接(自然连接): 只有两个表相匹配的行才能在结果集中出现
    2、外连接: 包括
    (1)左外连接(左边的表不加限制)
    (2)右外连接(右边的表不加限制)
    (3)全外连接(左右两表都不加限制)
    3、自连接(连接发生在一张基表内)

    有 (+) 的一方代表有可以为空,即副表

    oracle中的(+)是一种特殊的用法,(+)表示外连接,并且总是放在非主表的一方。例如左外连接:select A.a,B.a from A LEFT JOIN B ON A.b=B.b;等价于select A.a,B.a from A,B where A.b = B.b(+);再举个例子,这次是右外连接:select A.a,B.a from A RIGHT JOIN B ON A.b=B.b;等价于select A.a,B.a from A,B where A.b (+) = B.b;
     
     转自:https://www.cnblogs.com/powerwu/articles/10565727.html
  • 相关阅读:
    PHP中的NULL类型
    js中自定义事件,使用了jQuery
    chrome调试文章
    codeforces 633D
    hdu 1496 Equations
    poj 1286 Necklace of Beads
    poj 2154 Color
    poj 3270 Cow Sorting
    poj 1026 Cipher
    poj 2369 Permutations
  • 原文地址:https://www.cnblogs.com/javalinux/p/15770681.html
Copyright © 2020-2023  润新知