Oracle Connection Query

Source: Internet
Author: User

-Cross connection (produces Cartesian product)
SELECT * from the EMP Cross join dept;
--Natural connection (can automatically match related fields and eliminate Cartesian product)
SELECT * FROM EMP Natural JOIN dept;
--join ... The using,using clause is followed by the associated field
SELECT * FROM EMP e join dept using (DEPTNO);
--join ... The On,on clause is followed by the associated condition
SELECT * from emp e joins Salgrade s on (e.sal between S.losal and S.hisal);
--Left outer connection OUTER join ... On
SELECT * FROM EMP e left outer joins Dept D on (e.deptno = D.deptno);
-left outer joins can also be written like this:
SELECT * FROM EMP E, dept d where E.deptno = D.deptno (+);
--Right outer connection OUTER join ... On
SELECT * FROM EMP e right outer joins Dept D on (e.deptno = D.deptno);
--right outer joins can also be written like this:
SELECT * FROM EMP E, Dept D where E.deptno (+) = D.deptno;
--Full out-of-the-OUTER joins
SELECT * FROM EMP e full outer joins Dept D on (e.deptno = D.deptno);

Oracle Connection Query

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.