Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1344989
  • 博文数量: 169
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 3800
  • 用 户 组: 普通用户
  • 注册时间: 2011-03-30 13:00
个人简介

About me:Oracle ACE pro,optimistic,passionate and harmonious. Focus on ORACLE,MySQL and other database programming,peformance tuning,db design, j2ee,Linux/AIX,Architecture tech,etc

文章分类

全部博文(169)

文章存档

2024年(24)

2023年(28)

2022年(43)

2020年(62)

2014年(3)

2013年(9)

分类: Oracle

2022-04-10 21:12:59

 我们知道,从Oracle9i开始,对于外连接(Outer join)Oracle支持SQL92标准:这个标准有很多新的连接语法,当然不仅是外连接了,这里,我主要讨论的是外连接的新语法:Left Outer Join和Right Outer Join,Full Outer Join这里不会讨论,我会额外总结所有的SQL92新的连接语法。对于接触Oracle比较早的开发人员或DBA来说,外连接用+号已经很习惯了,但是新语法有很多好的优点,Oracle也强烈建议9i以及之后的版本使用新的外连接语法。OK,下面进入正题,那么外连接的新旧语法之间有什么差异呢?:

------------------------------- table sample--------------------
DINGJUN123>drop table a;
表已删除。


DINGJUN123>drop table b;
表已删除。

DINGJUN123>drop table c;
表已删除。


DINGJUN123>create table a as
  2  select level id,'x'||level name
  3  from dual connect by level<5
  4  union all
  5  select level,'y'||level
  6  from dual connect by level<5;
表已创建。


DINGJUN123>create table b as
  2  select level id,'x'||level name
  3  from dual connect by level<3;
表已创建。

DINGJUN123>create table c as
  2  select level id,'y'||level name
  3  from dual connect by level<3;
表已创建。

DINGJUN123>select * from a;
        ID NAME
---------- --------------------
         1 x1
         2 x2
         3 x3
         4 x4
         1 y1
         2 y2
         3 y3
         4 y4
已选择8行。

DINGJUN123>select * from b;
        ID NAME
---------- --------------------
         1 x1
         2 x2
已选择2行。

DINGJUN123>select * from c;
        ID NAME
---------- --------------------
         1 y1
         2 y2
已选择2行。


DINGJUN123>set null null


------------------------------test1:  outer-join use old syntax--------------------------
DINGJUN123>select *
  2  from a,b
  3  where a.id = b.id(+) and a.name like 'x%';
        ID NAME                         ID NAME
---------- -------------------- ---------- --------------------
         1 x1                            1 x1
         2 x2                            2 x2
         3 x3                   null       null
         4 x4                   null       null
已选择4行。


-------------------------------test2: outer-join use new syntax--------------------------
--NO.1: only use 'on' clause,not 'where' clause

DINGJUN123>select *
  2  from a left join b
  3  on a.id =b.id and a.name like 'x%';
        ID NAME                         ID NAME
---------- -------------------- ---------- --------------------
         1 x1                            1 x1
         2 x2                            2 x2
         3 x3                   null       null
         4 x4                   null       null
         1 y1                   null       null
         2 y2                   null       null
         3 y3                   null       null
         4 y4                   null       null
已选择8行。


--NO.2:use 'on' and 'where' clause

DINGJUN123>select *
  2  from a left join b
  3  on a.id =b.id
  4  where a.name like 'x%';
        ID NAME                         ID NAME
---------- -------------------- ---------- --------------------
         1 x1                            1 x1
         2 x2                            2 x2
         4 x4                   null       null
         3 x3                   null       null
已选择4行。


DINGJUN123>select *
  2  from a left join b
  3  on  a.name like 'x%'
  4  where a.id=b.id;

        ID NAME                         ID NAME
---------- -------------------- ---------- --------------------
         1 x1                            1 x1
         2 x2                            2 x2

已选择2行。

--Questions: what can you conclude from these analytics?
--something else? please wait.......





      结论和更多分析内容下步分解,对此内容感兴趣的可以先研究研究(欢迎回复参与讨论),可能刚开始看的时候迷惑不解,但是当谜底揭开,其实会得出一个很简单却很重要的结论(此结论放之四海而皆准,是学习知识之重要基石)。
阅读(557) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~