Oracle join usage demonstration

Source: Internet
Author: User

The following articles mainly introduce the join usage in Oracle. If you are a beginner, you are very interested in the actual usage of oin in Oracle, however, if you cannot find any information to learn more about it, you may wish to read the following articles.

Oracle join usage

8i:

 
 
  1. create table dali.test1(a int,b int);  
  2. create table dali.test2(a int,b int);  
  3. insert into dali.test1 values(1,456);  
  4. insert into dali.test1 values(2,427);  
  5. insert into dali.test2 values(1,45456);  
  6. insert into dali.test2 values(3,45656);  

Internal Connection

 
 
  1. select * from dali.test1 a, dali.test2 b where a.a=b.a; 

Left join

 
 
  1. select * from dali.test1 a, dali.test2 b where a.a=b.a(+); 

Right join

 
 
  1. select * from dali.test1 a, dali.test2 b where a.a(+)=b.a; 

Full connection

 
 
  1. select * from dali.test1 a, dali.test2 b where a.a=b.a(+)  
  2. union  
  3. select * from dali.test1 a, dali.test2 b where a.a(+)=b.a;  

Dikar

 
 
  1. select * from dali.test1, dali.test2; 

9i is the same as sqlserver left join, right join, full join

Divided into 1. inner join 2. left join 3. right join 4. LEFT OUTER JOIN

In Oracle join implementation, we first set two tables to be used.

Table A Table B

ID NAME ID CLASS

1 IBM 1 C1

2 SONY 3 C3

3 BMW 4 C4

1 inner join: SELECT * from a inner join B on a. ID = B. ID

Table ID NAME CLASS

1 IBM C1

3 BMW C3

By the way, the IDs of both tables exist and the combined tables of the two tables are obtained.

2 left join: SELECT * from a left join B on a. ID = B. ID

Table ID NAME CLASS

1 IBM C1

2 SONY null

3 BMW C3

If there is A sense of direction, LEFT (left) returns A (LEFT table of left Statement) and table B does not have any records! Haha)

3 right join: SELECT * from a right join B on a. ID = B. ID

Table ID NAME CLASS

1 IBM C1

3 BMW C3

4 null C4

RIGHT (right) returns all records of B (table on the RIGHT side of the right statement). If the records of Table A do not exist, they must be completed (I have turned over too! Haha)

4 full outer join: SELECT * from a full outer join B on a. ID = B. ID

Table ID NAME CLASS

1 IBM C1

2 SONY null

3 BMW C3

4 null C4

The above content is an introduction to the join usage in Oracle. I hope you will get some benefits.

Related Article

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.