Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Oracle & ANSI Compliance

Status
Not open for further replies.
Dec 14, 1999
1
IE
Does Oracle support the ANSI standard INNER JOIN.<br>

<br>

I haerd from someone that it did not, I'm quite surpirised. If thats true what is the Oracle equivalent?<br>

<br>

I'm using Oracle 8<br>

<br>

Thanks
 
I think of an inner join as something like this:<br>
<br>
Select empname, deptname<br>
From dept, emp<br>
Where emp.deptno = dept.dempno;<br>
<br>
And an outer join as something like this:<br>
<br>
Select empname, deptname<br>
From dept, emp<br>
Where emp.deptno = dept.dempno(+);<br>
<br>
In the second example rows are returned even when emp.deptno is null.<br>
<br>
Oracle versions 6, 7 & 8 supports both of these statements.<br>
<br>
Does this answer your question?<br>
<br>
Mike<br>
<p>Mike Lacey<br><a href=mailto:Mike_Lacey@Cargill.Com>Mike_Lacey@Cargill.Com</a><br><a href= Cargill's Corporate Web Site</a><br>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top