zoukankan      html  css  js  c++  java
  • oracle sql 内连接 左外连接 右外连接 全外连接

    1.创建测试表并准备测试数据
    sec@ora10g> create table a (a number(1),b number(1),c number(1));
    sec@ora10g> create table b (a number(1),d number(1),e number(1));
    sec@ora10g> insert into a values(1,1,1);
    sec@ora10g> insert into a values(2,2,2);
    sec@ora10g> insert into a values(3,3,3);
    sec@ora10g> insert into b values(1,4,4);
    sec@ora10g> insert into b values(2,5,5);
    sec@ora10g> insert into b values(4,6,6);
    sec@ora10g> commit;

    sec@ora10g> select * from a;
           
    A          B          C
    ---------- ---------- ----------
            
    1          1          1
            
    2          2          2
            
    3          3          3


    sec@ora10g> select * from b;

            
    A          D          E
    ---------- ---------- ----------
            
    1          4          4
            
    2          5          5
            
    4          6          6

    2. 内连接
    sec@ora10g> select * from a, b where a.a=b.a;
    另外一种写法如下
    sec@ora10g> select * from  a inner join b on a.a=b.a;

            
    A        B          C          A          D          E

    -------- ---------- ---------- ---------- ---------- ----------
            
    1        1          1          1          4          4
            
    2        2          2          2          5          5

    3.左外连接
    sec@ora10g> select * from  a,b where a.a=b.a(+);
    另外一种写法如下
    sec@ora10g> select *  from  a  left outer join b on a.a=b.a;

            
    A          B          C          A          D          E
    ---------- ---------- ---------- ---------- ---------- ----------
            
    1          1          1          1          4          4
            
    2          2          2          2          5          5
            
    3          3          3

    4.右外连接
    sec@ora10g> select * from  a,b where a.a(+)=b.a;
    另外一种写法如下
    sec@ora10g> select * from  a  right outer join b on a.a=b.a;

            
    A          B          C          A          D          E
    ---------- ---------- ---------- ---------- ---------- ----------
            
    1          1          1          1          4          4
            
    2          2          2          2          5          5
                                             
                        4          6          6
    5.全外连接
    sec@ora10g> select * from  a full outer join b on a.a=b.a;

            
    A          B          C          A          D          E
    ---------- ---------- ---------- ---------- ---------- ----------
            
    1          1          1          1          4          4
            
    2          2          2          2          5          5
            
    3          3          3
                                             
                        4          6          6

  • 相关阅读:
    运维必备:Oracle自备份精简教程(linux及win)
    Ansible11:变量详解【转】
    Ansible10:Playbook的角色与包含【转】
    Nginx下Redmine配置
    centos 6.5下安装mysql+nginx+redmine 3.1.0 笔记
    nginx 出现413 Request Entity Too Large问题的解决方法
    linux 安装redmine 遇到的问题
    linux编译ruby1.8.7 出现OPENSSL错误
    Linux下安装项目管理工具Redmine
    (转载)Go语言开发环境配置
  • 原文地址:https://www.cnblogs.com/pumushan/p/4661844.html
Copyright © 2011-2022 走看看