SQL left join and right join principle and example analysis

SQL left join and right join principle and example analysis

There are two tables, and the records in table A may not exist in table B.

  • Left join: focus on the left side, if there is no right side, it will be empty.
  • Right connection: focus on the right side, if there is no left side, it will be empty.
  • Inner Join: Returns the intersection

For example:

student table

id name age class_id
1 yang twenty two 1
2 su 20 1
3 fan 20 2
4 li 30 2
5 luo twenty two

class table c

id name total
1 Freshman 30
2 Sophomore Year 15
3 Junior Year 40

In the table above, record number 5 in table s cannot be found in table c.

1. Left join: the left side of the left join is the main table, and if there is no corresponding secondary table, NULL is displayed.

SELECT s.`name`,s.`class_id` FROM student s LEFT JOIN class c ON s.`class_id`=c.`class_id`

result


name class_id
yang 1
su 1
fan 2
li 2
luo (NULL)

2. Right join: the right side of the right join is the primary table, and if there is no corresponding secondary table, NULL is displayed.

SELECT s.`name`,s.`class_id` FROM student s RIGHT JOIN class c ON s.`class_id`=c.`class_id`

result


name class_id
yang 1
su 1
fan 2
li 2
(NULL) (NULL)

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • MySQL 8.0.18 Hash Join does not support left/right join left and right join issues
  • mysql join query (left join, right join, inner join)
  • SQL four types of joins - left outer join, right outer join, inner join, full join detailed explanation
  • MySQL table LEFT JOIN left join and RIGHT JOIN right join example tutorial
  • Examples of using MySQL left and right inner joins
  • In-depth understanding of the four types of SQL joins - left outer join, right outer join, inner join, full join
  • SQL left join and right join usage tips (left join and right join)
  • mysql left join, right join and inner join
  • How to write a SQL statement for a three-table left join query

<<:  Quickly solve the problem of slow Tomcat startup, super simple

>>:  Detailed explanation of axios encapsulation and API interface management in React project

Recommend

MySQL 5.7.20 Green Edition Installation Detailed Graphic Tutorial

First, let’s understand what MySQL is? MySQL is a...

Implementing a simple age calculator based on HTML+JS

Table of contents Preface Demonstration effect HT...

Zabbix uses PSK shared key to encrypt communication between Server and Agent

Since Zabbix version 3.0, it has supported encryp...

English: A link tag will automatically complete href in IE

English: A link tag will automatically complete h...

The difference between html Frame, Iframe and Frameset

10.4.1 The difference between Frameset and Frame ...

How to set background color and transparency in Vue

Background color and transparency settings As sho...

Determine whether MySQL update will lock the table through examples

Two cases: 1. With index 2. Without index Prerequ...

Detailed tutorial on compiling and installing python3.6 on linux

1. First go to the official website https://www.p...

9 ways to show and hide CSS elements

In web page production, displaying and hiding ele...

Idea deploys remote Docker and configures the file

1. Modify the Linux server docker configuration f...

Example method to view the IP address connected to MySQL

Specific method: First open the command prompt; T...

WeChat applet implements a simple handwritten signature component

Table of contents background: need: Effect 1. Ide...

How to connect to MySQL visualization tool Navicat

After installing Navicat The following error may ...

IE8 uses multi-compatibility mode to display web pages normally

IE8 will have multiple compatibility modes . IE pl...