SQL Left Join, Right Join, Inner Join, and Natural Join Summary of Various JoinsIn SQL, there are various Joins, including Left Join, Right Join, Inner Join, and Natural Join. Beginners must be confused about what they are. What are the differences and connections between them? Let's use a picture to illustrate: The above picture illustrates the difference between Left Join, Right Join, Inner Join, and Full Outer Join. Let's use a simple example to help us understand and distinguish them. Now there are two tables Person and Address:
Let’s look at each one of them below: Left Join: returns all rows from the left table (table1), with the matching rows in the right table (table2). The result is NULL in the right side when there is no match. Left intersection: Returns all rows of the left table and the matching rows of the right table. If there is no match, use NULL.
Right Join: returns all rows from the right table (table2), with the matching rows in the left table (table1). The result is NULL in the left side when there is no match. Right intersection: Returns all rows of the right table and the matching rows of the left table. If there is no match, use NULL.
Inner Join: selects all rows from both tables as long as there is a match between the columns in both tables. Internal intersection: Select the rows where the keywords match in the left and right tables.
Full Join: returns all rows from the left table (table1) and from the right table (table2), and it combines the result of both LEFT and RIGHT joins. Full intersection: Returns all rows of the left table and all rows of the right table, which is the union of the left intersection and the right intersection. Note that since there is no Full Join command in MySQL, we can also UNION the results of Left Join and Right Join:
Natural Join: creates an implicit join clause for you based on the common columns in the two tables being joined. Common columns are columns that have the same name in both tables. A NATURAL JOIN can be an INNER join , a LEFT OUTER join , or a RIGHT OUTER join . The default is INNER join . Natural intersection: Create an implicit join operation based on the common columns of the left and right tables. The common columns are the two columns with the same column names in the two tables. Natural intersection can be inward intersection, left intersection or right intersection. The default is internal.
Finally, note that the keywords on both sides of the equal sign below are equivalent: A LEFT JOIN B = A LEFT OUTER JOIN B A RIGHT JOIN B = A RIGHT OUTER JOIN B A FULL JOIN B = A FULL OUTER JOIN B A INNER JOIN B = A JOIN B This is the end of this article on the detailed explanation of various join summaries of SQL. For more relevant content on various join summaries of SQL, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Solve the problem of running jupyter notebook on the server
>>: The tdwidth setting of the table in multiple divs is the same and cannot be aligned
Linux installation MySQL notes 1. Before installi...
<br />The content is reproduced from the Int...
Note: This method is only applicable to webkit-ba...
I received a task from the company today, and the...
1. Download the mysql-5.7.17-winx64.zip installat...
XQuery is a language for extracting data from XML...
Table of contents 1. Conditions for joint index f...
Table of contents 1 Nginx Installation 2 Configur...
This article example shares the specific code of ...
1. The startup menu is to move the cursor to the ...
Table of contents 1. prototype (explicit prototyp...
How to use the code in NetEase Blog: First log in...
Generally, when we use a table, we always give it...
Frequently asked questions Access denied for user...
Prerequisites A cloud server (centOS of Alibaba C...