Specific usage instructions for mysql-joins

Specific usage instructions for mysql-joins

The word JOIN is familiar to anyone who has been in contact with databases. Many people are familiar with various JOINs, but many people do not have a thorough understanding of it.
Assume we have two tables, Table_A and Table_B. The data in these two tables are as follows:

TABLE_A | TABLE_B
 PK Value | PK Value
---- ---------- | ---- ----------
 1 FOX | 1 TROT
 2 COP | 2 CAR
 3 TAXI | 3 CAB
 6 WASHINGTON | 6 MONUMENT
 7 DELL | 7 PC
 5 ARIZONA | 8 MICROSOFT
 4 LINCOLN | 9 APPLE
 10 LUCENT | 11 SCOTCH

Join syntax:

join_table:
 table_reference JOIN table_factor [join_condition] //Inner join | table_reference {LEFT|RIGHT|FULL} [OUTER] JOIN table_reference join_condition //Outer join | table_reference LEFT SEMI JOIN table_reference join_condition //Left semi join | table_reference CROSS JOIN table_reference [join_condition] (as of Hive 0.10)


table_reference:
 table_factor //table | join_table //join statement table_factor:
 tbl_name [alias] //Table name [alias]
 | table_subquery alias //Subquery [alias]
 | ( table_references ) // table_reference with space


join_condition:
 ON expression //conditional statement starting with on

1. Inner JOIN: (Inner Join)

insert image description here

This is the simplest and most easily understood connection, and is also the most common. This query will return all the records in the left table (Table A) that have a matching record in the right table (Table B). This connection is written as follows:

SELECT <select_list> 
FROM Table_A A
INNER JOIN Table_B B
ON A.Key = B.Key
-- Inner JOIN
SELECT A.PK AS A_PK, A.Value AS A_Value,
  B.Value AS B_Value, B.PK AS B_PK
FROM Table_A A
INNER JOIN Table_B B
ON A.PK = B.PK

A_PK A_Value B_Value B_PK
---- ---------- ---------- ----
 1 FOX TROT 1
 2 COP CAR 2
 3 TAXI CAB 3
 6 WASHINGTON MONUMENT 6
 7 DELL PC 7

(5 row(s) affected)

2. Left JOIN: (Left Join)

insert image description here

This query returns all records from the left table (Table A), regardless of whether they match any records in the right table (Table B). It will also return any matching records from the correct table. This connection is written as follows:

SELECT <select_list>
FROM Table_A A
LEFT JOIN Table_B B
ON A.Key = B.Key
-- Left JOIN
SELECT A.PK AS A_PK, A.Value AS A_Value,
B.Value AS B_Value, B.PK AS B_PK
FROM Table_A A
LEFT JOIN Table_B B
ON A.PK = B.PK

A_PK A_Value B_Value B_PK
---- ---------- ---------- ----
 1 FOX TROT 1
 2 COP CAR 2
 3 TAXI CAB 3
 4 LINCOLN NULL NULL
 5 ARIZONA NULL NULL
 6 WASHINGTON MONUMENT 6
 7 DELL PC 7
 10 LUCENT NULL NULL

(8 row(s) affected)

3. Left Excluding JOIN: (Left join excludes inner join results)

This query will return all the records from the left table (Table A) that do not match any records in the right table (Table B). This connection is written as follows:

insert image description here

SELECT <select_list> 
FROM Table_A A
LEFT JOIN Table_B B
ON A.Key = B.Key
WHERE B.Key IS NULL
-- Left Excluding JOIN
SELECT A.PK AS A_PK, A.Value AS A_Value,
B.Value AS B_Value, B.PK AS B_PK
FROM Table_A A
LEFT JOIN Table_B B
ON A.PK = B.PK
WHERE B.PK IS NULL

A_PK A_Value B_Value B_PK
---- ---------- ---------- ----
 4 LINCOLN NULL NULL
 5 ARIZONA NULL NULL
 10 LUCENT NULL NULL
(3 row(s) affected)

4. Right JOIN: (right join)

insert image description here

This query returns all records from the right table (Table B), regardless of whether any of those records match records in the left table (Table A). It will also return any matching records from the left table. This connection is written as follows:

SELECT <select_list>
FROM Table_A A
RIGHT JOIN Table_B B
ON A.Key = B.Key
--Right JOIN
SELECT A.PK AS A_PK, A.Value AS A_Value,
B.Value AS B_Value, B.PK AS B_PK
FROM Table_A A
RIGHT JOIN Table_B B
ON A.PK = B.PK

A_PK A_Value B_Value B_PK
---- ---------- ---------- ----
 1 FOX TROT 1
 2 COP CAR 2
 3 TAXI CAB 3
 6 WASHINGTON MONUMENT 6
 7 DELL PC 7
NULL NULL MICROSOFT 8
NULL NULL APPLE 9
NULL NULL SCOTCH 11

(8 row(s) affected)

5. Right Excluding JOIN: (Right join excludes inner join results)

insert image description here

This query will return all the records from the right table (Table B) that do not match any records in the left table (Table A). This connection is written as follows:

SELECT <select_list>
FROM Table_A A
RIGHT JOIN Table_B B
ON A.Key = B.Key
WHERE A.Key IS NULL
-- Right Excluding JOIN
SELECT A.PK AS A_PK, A.Value AS A_Value,
B.Value AS B_Value, B.PK AS B_PK
FROM Table_A A
RIGHT JOIN Table_B B
ON A.PK = B.PK
WHERE A.PK IS NULL

A_PK A_Value B_Value B_PK
---- ---------- ---------- ----
NULL NULL MICROSOFT 8
NULL NULL APPLE 9
NULL NULL SCOTCH 11

(3 row(s) affected)

6. Outer JOIN: (Outer Join)

insert image description here

This join may also be called a full outer join or a full join. This query returns all records from both tables, joining the records in the left table (Table A) that match records in the right table (Table B). This connection is written as follows:

SELECT <select_list>
FROM Table_A A
FULL OUTER JOIN Table_B B
ON A.Key = B.Key
-- Outer JOIN
SELECT A.PK AS A_PK, A.Value AS A_Value,
B.Value AS B_Value, B.PK AS B_PK
FROM Table_A A
FULL OUTER JOIN Table_B B
ON A.PK = B.PK

A_PK A_Value B_Value B_PK
---- ---------- ---------- ----
 1 FOX TROT 1
 2 COP CAR 2
 3 TAXI CAB 3
 6 WASHINGTON MONUMENT 6
 7 DELL PC 7
NULL NULL MICROSOFT 8
NULL NULL APPLE 9
NULL NULL SCOTCH 11
 5 ARIZONA NULL NULL
 4 LINCOLN NULL NULL
 10 LUCENT NULL NULL

(11 row(s) affected)

7. Outer Excluding JOIN: (Outer join excludes inner join results)

insert image description here

This query will return all records from the left table (Table A) and all records from the right table (Table B) that do not have a match. I haven't needed to use this type of join yet, but I use all the other types of joins fairly frequently. This connection is written as follows:

SELECT <select_list>
FROM Table_A A
FULL OUTER JOIN Table_B B
ON A.Key = B.Key
WHERE A.Key IS NULL OR B.Key IS NULL
-- Outer Excluding JOIN
SELECT A.PK AS A_PK, A.Value AS A_Value,
B.Value AS B_Value, B.PK AS B_PK
FROM Table_A A
FULL OUTER JOIN Table_B B
ON A.PK = B.PK
WHERE A.PK IS NULL
OR B.PK IS NULL

A_PK A_Value B_Value B_PK
---- ---------- ---------- ----
NULL NULL MICROSOFT 8
NULL NULL APPLE 9
NULL NULL SCOTCH 11
 5 ARIZONA NULL NULL
 4 LINCOLN NULL NULL
 10 LUCENT NULL NULL

(6 row(s) affected)

Note that on an outer join, the inner join records are returned first, followed by the right join records, and finally the left join records (at least, that's how my Microsoft SQL Server does it; this doesn't require the use of any ORDER BY statements, of course). You can visit the Wikipedia article for more information (however, the entry is not graphical). I also created a cheat sheet that you can print out if needed. If you right click on the image below and select "Save Target As..." you will download the full size image.

insert image description here

This is the end of this article about the specific usage of mysql-joins. For more relevant usage of mysql-joins, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Summary of seven MySQL JOIN types
  • MYSQL database basics - Join operation principle
  • MySQL join buffer principle
  • Mysql join query syntax and examples
  • Summary of various common join table query examples in MySQL
  • Specific use of MySQL's seven JOINs

<<:  Four ways to combine CSS and HTML

>>:  How to operate Docker and images

Recommend

The whole process of IDEA integrating docker to deploy springboot project

Table of contents 1. IDEA downloads the docker pl...

A brief discussion on the implementation principle of Webpack4 plugins

Table of contents Preface know Practice makes per...

Version numbers in css and js links in HTML (refresh cache)

background Search the keyword .htaccess cache in ...

Why node.js is not suitable for large projects

Table of contents Preface 1. Application componen...

Vue calls the computer camera to realize the photo function

This article example shares the specific code of ...

How to use gdb to debug core files in Linux

1.core file When a Segmentation fault (core dumpe...

VMware15.5 installation Ubuntu20.04 graphic tutorial

1. Preparation before installation 1. Download th...

How to execute PHP scheduled tasks in CentOS7

Preface This article mainly introduces the releva...

VMware Workstation Pro installs Win10 pure version operating system

This article describes the steps to install the p...

Tips on MySQL query cache

Table of contents Preface Introduction to QueryCa...

Implementing circular scrolling list function based on Vue

Note: You need to give the parent container a hei...

Summarize the common application problems of XHTML code

<br />For some time, I found that many peopl...

How to create components in React

Table of contents Preface Component Introduction ...

Introduction to Linux common hard disk management commands

Table of contents 1. df command 2. du command 3. ...