• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

A query in naming conventions of Oracle Joins

 
Ranch Hand
Posts: 2234
Eclipse IDE Firefox Browser Redhat
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
DOnt know why all the terms are invented by Oracle , Apart from Ansi formats introduced from Oracle 9I

IS there any difference between Right Join and Right Outer Join ?

I assume that the Equi Join and Inner Joins means the sam e, correct me if i am wrong ??

Waiting fo your replies . Thanks in advnace .


 
Sheriff
Posts: 14691
16
Eclipse IDE VI Editor Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In Oracle, outer joins are called either left outer join and right outer join, depending on which table the joined table is.
Using "left" or "right" implies that this is an outer join, so you can drop the OUTER keyword in your queries. Thus, there's no different between RIGHT JOIN and RIGHT OUTER JOIN.

I assume that the Equi Join and Inner Joins means the sam e, correct me if i am wrong ??


If by Equi Join you mean using "=" on both columns, then that's correct.
 
Ravi Kiran Va
Ranch Hand
Posts: 2234
Eclipse IDE Firefox Browser Redhat
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you very much Christophe .
 
reply
    Bookmark Topic Watch Topic
  • New Topic