Summary of four situations of joint query between two tables in Mysql

Summary of four situations of joint query between two tables in Mysql

Generally speaking, in order to get more complete results, we need to get results from two or more tables. I usually use select xxx,xxx from table1, table2 where table1.xxx=table2.xxx. We usually perform such operations. In fact, there is another operation in MySQL, that is, join operation. For example, there are two tables below:

Take a look at the "Persons" table:

Next, look at the "Orders" table:

The above two tables, then we connect them to query

SELECT Persons.LastName, Persons.FirstName, Orders.OrderNo
FROM Persons, Orders
WHERE Persons.Id_P = Orders.Id_P

Result Set:

If you use the keyword JOIN to get data from two tables

SELECT Persons.LastName, Persons.FirstName, Orders.OrderNo
FROM Persons
INNER JOIN Orders
ON Persons.Id_P = Orders.Id_P
ORDER BY Persons.LastName

Result Set:

Then the inner join is no different from the normal query above

Different SQL JOINs

  • JOIN: Returns rows if there is at least one match in the table
  • LEFT JOIN: Returns all rows from the left table even if there are no matches in the right table
  • RIGHT JOIN: Returns all rows from the right table even if there is no match in the left table
  • FULL JOIN: Returns rows if there is a match in either table.

LEFT JOIN Keyword Syntax

"Persons" table:

"Orders" table:

SELECT Persons.LastName, Persons.FirstName, Orders.OrderNo
FROM Persons
LEFT JOIN Orders
ON Persons.Id_P=Orders.Id_P
ORDER BY Persons.LastName

Result Set:

SQL RIGHT JOIN Keyword

"Persons" table:

"Orders" table:

SELECT Persons.LastName, Persons.FirstName, Orders.OrderNo
FROM Persons
RIGHT JOIN Orders
ON Persons.Id_P=Orders.Id_P
ORDER BY Persons.LastName

Result Set:

SQL FULL JOIN keyword

"Persons" table:

"Orders" table:

FULL JOIN Example

SELECT Persons.LastName, Persons.FirstName, Orders.OrderNo
FROM Persons
FULL JOIN Orders
ON Persons.Id_P=Orders.Id_P
ORDER BY Persons.LastName

Result Set:

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • MySQL database aggregate query and union query operations
  • MySQL beginners can say goodbye to the troubles of grouping and aggregation queries
  • Introduction to the use of MySQL joint query UNION and UNION ALL
  • Detailed analysis and optimization of Mysql multi-table joint query efficiency
  • Popular explanation of several MySQL joint queries
  • Analysis of MySQL multi-table joint query operation examples
  • MySQL aggregate query and union query operation examples

<<:  Implementation of React configuration sub-routing

>>:  Detailed explanation of basic management of KVM virtualization in CentOS7

Recommend

Share 13 excellent web wireframe design and production tools

When you start working on a project, it’s importa...

How to ensure transaction characteristics of MySQL InnoDB?

Preface If someone asks you "What are the ch...

How to implement a multi-terminal bridging platform based on websocket in JS

Table of contents 1. What to debug 2. Features of...

How to find out uncommitted transaction information in MySQL

A while ago, I wrote a blog post titled "Can...

Analysis of the difference between absolute path and relative path in HTML

As shown in the figure: There are many files conne...

How to use css overflow: hidden (overflow hiding and clearing floats)

Overflow Hide It means hiding text or image infor...

Problems with using multiple single quotes and triple quotes in MySQL concat

When dynamically concatenating strings, we often ...

Pure CSS and Flutter realize breathing light effect respectively (example code)

Last time, a very studious fan asked if it was po...

How to use Volume to transfer files between host and Docker container

I have previously written an article about file t...

How to set up cross-domain access in IIS web.config

Requirement: The page needs to display an image, ...

Native JS to achieve directory scrolling effects

Here is a text scrolling effect implemented with ...

How to view the creation time of files in Linux

1. Introduction Whether the creation time of a fi...

Tutorial diagram of installing zabbix2.4 under centos6.5

The fixed IP address of the centos-DVD1 version s...