Inner join on, left join on, right join on

Source: Internet
Author: User
Tags null null

1. Theory

As long as the public fields of the two tables have matched values, the records in the two tables are combined.

My personal understanding: Use a common field to calculate the intersection of the two tables that meet the requirements, and combine the records that meet the requirements of each table with the common fields.

Syntax

From Table1 inner join Table2 on Table1. field1 compopr Table2. field2

The inner join operation includes the following parts:

Part Description
Table1, Table2 The name of the table in which the record is to be combined.
Field1, field2 The name of the field to be joined. If they are not numbers, these fields must have the same data type and contain similar data, but they do not have to have the same name.
Compopr Comparison operators for any link: "=", "<", ">", "<=", "> =", or "<> ".

Description

The inner join operation can be used in any from clause. This is the most common connection type. As long as the public fields of the two tables have matched values, the inner join will combine the records in these tables.

Inner join can be used for the Departments and employees tables to select all employees in each department. To select all parts (even if some departments are not assigned employees) or all employees (even if some employees are not assigned to any department ), you can use left join or right join to create an external join.

If you try to join fields that contain remarks or OLE object data, an error occurs.

You can join any two numeric fields of similar types. For example, automatic numbers and long integer fields can be joined because they are of similar type. However, single-precision and double-precision fields cannot be connected.

The following example shows how to use the categoryid field to join the categories and products tables:

Select categoryname, productname

From categories inner join Products

On categories. categoryid = products. categoryid;

In the previous example, categoryid is a joined field, but it is not included in the query output because it is not included in the SELECT statement. To include a joined field, include the field name in the SELECT statement. In this example, categories. categoryid.

You can also link Multiple on clauses in a join statement. Use the following syntax:

Select fields
From Table1 inner join Table2
On table1.field1 compopr table2.field1 and
On table1.field2 compopr table2.field2) or
On table1.field3 compopr table2.field3)];

You can also use the following syntax to nest join statements:

Select fields
From Table1 inner join
(Table2 inner join [(] table3
[Inner join [(] tablex [inner join...)]
On table3.field3 compopr tablex. fieldx)]
On table2.field2 compopr table3.field3)
On table1.field1 compopr table2.field2;

Left join or right join can be nested in inner join, but inner join cannot be nested in left join or right join.

2. Operate instances

Table A records as follows:
aid anum
1 a20050111
2 a20050112
3 a20050113
4 a20050114
5 a20050115

Table B records the following:
Bid bname
1 2006032401
2 2006032402
3 2006032403
4 2006032404
8 2006032408

The experiment is as follows:
1. Left join

The SQL statement is as follows:
Select * from
Left join B
On a. Aid = B. Bid

The result is as follows:
Aid anum bid bname
1 a20050111 1 2006032401
2 a20050112 2 2006032402
3 a20050113 3 2006032403
4 a20050114 4 2006032404
5 a20050115 null
(The number of affected rows is 5)

Result description:
Left join is based on the records of table A. A can be seen as the left table, B can be seen as the right table, and left join is based on the left table.
In other words, the records in the left table (a) are all expressed, while the right table (B) only displays records that meet the search criteria (in this example:. aid = B. bid ).
All records in Table B are null.

2. Right join
The SQL statement is as follows:
Select * from
Right join B
On a. Aid = B. Bid
The result is as follows:
Aid anum bid bname
1 a20050111 1 2006032401
2 a20050112 2 2006032402
3 a20050113 3 2006032403
4 a20050114 4 2006032404
Null null 8 2006032408
(The number of affected rows is 5)
Result description :
After careful observation, we will find that the result of left join is exactly the opposite. This time, it is based on the right table (B) and is filled with null when table A is insufficient.

3. Inner join
The SQL statement is as follows:
Select * from
Innerjoin B
On a. Aid = B. Bid

The result is as follows:
Aid anum bid bname
1 a20050111 1 2006032401
2 a20050112 2 2006032402
3 a20050113 3 2006032403
4 a20050114 4 2006032404

Result description:
Obviously, only the records of A. Aid = B. Bid are displayed here. This indicates that inner join is not based on WHO, and only records meeting the conditions are displayed.

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.