| Subject: | Outer Joins With Oracle | |
| Date: | 2005-04-25 04:02:07 | |
| From: | oraguy | |
|
Response to: Outer Joins With Oracle
|
||
|
So what does this mean a join can become left or right if we interchange the positions of columns like p.partid(+)=s.partid (this is giving all unmatched rows of s table which is on right so this should be called as right outer join)
|
||
Showing messages 1 through 1 of 1.
-
Outer Joins With Oracle
2005-10-05 03:41:55 outerjoins [View]



I've used 2tables holding june month and august month data. In august month i've got (n+1) records whereas in june month n records. On using outer join for august and june month, i got same number of records as their corresponding tables.
select a.* from aug a, jun b where b.ASST_NO=a.ASST_NO(+); -- getting jun table record count
select a.* from aug a, jun b where b.ASST_NO(+)=a.ASST_NO; -- getting aug table record count