In-depth understanding of MySQL self-connection and join association

In-depth understanding of MySQL self-connection and join association

1. MySQL self-connection

MySQL sometimes needs to connect to itself (self-connection) when querying information, so we need to define an alias for the table. Let's take an example. The following is a commodity purchase table. We need to find all the information whose purchase price is higher than Huihui's.

Generally speaking, when we see this table, we first operate it with statements:

SELECT * FROM shopping WHERE price>27

As you can imagine, this is very simple. What if you don’t know the detailed data of the database table or the amount of data is quite large? As a database administrator, we have to use other methods to quickly find the data we need.

Step by step query

The simplest way is also the easiest to think of:

SELECT price FROM shopping WHERE name='惠惠' //The price query result is 27
SELECT * FROM shopping WHERE price>27

Compared with the self-connection method, this method requires manual intervention on the intermediate results, which is obviously not conducive to automatic processing operations in the program.

Self-connection method:

SELECT b.* 
from shopping as a,shopping as b
where a.name='惠惠' 
and a.price<b.price 
order by b.id

We can get the following table information:


Note:

Although the aliases a and b have different names, they are the same table. The purpose of defining aliases is to make it easier to delete and select them.

Execute select through (intermediate table) to obtain b.*, which is the final result.

Subqueries

Subquery is also a commonly used method, which is to nest select in select.

The implementation code is as follows:

SELECT * FROM shopping 
WHERE price>(select price from 'shopping' where name='惠惠')

The results are shown below, and it can be seen that the results obtained by both methods are the same:


JOIN

INNER JOIN

The main function of inner join is to return the result set when there is at least one match in the table. The inner join and join here have the same function, so they are introduced together.
Two tables are given below, namely goods and category tables:

SELECT * FROM goods INNER JOIN category 
ON goods.id=category.goods_id 
ORDER BY gods.id

The result is as follows:

LEFT JOIN

The LEFT JOIN keyword returns all rows from the left table (table_name1), even if there are no matching rows in the right table (table_name2). It is recommended to use left association when doing projects. However, there are many table associations, one table is left-joined to a, but right-joined to b at the same time. In this case, adding a right join may make it easier to write.

Apply the first two tables to perform a left join query:

SELECT goods.*,category.cate_name 
FROM goods LEFT JOIN category 
ON goods.id=category.goods_id 
ORDER BY goods.id 


RIGHT JOIN

The RIGHT JOIN keyword will return all rows from the right table (table_name2), even if there are no matching rows in the left table (table_name1). Apply the first two tables to perform a right join query:

SELECT a.goods_name,a.price,b.*
FROM goods as a
RIGHT JOIN category as b
ON a.id=b.goods_id
ORDER BY b.id 


For multi-table associations, just add a few more association statements.

Summarize

The above is the full content of this article. I hope that the content of this article can bring some help to your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Analysis of MySQL multiple left join query usage
  • MySQL optimization: use join instead of subquery
  • MySQL query optimization: Introduction to join query sort limit (join, order by, limit statement)
  • Detailed tutorial on using JOIN statement to perform connection operations in MySQL
  • Mysql join query principle knowledge points
  • Mysql join query syntax and examples
  • Summary of several commonly used join connection methods in Mysql

<<:  jQuery implements the mouse drag image function

>>:  How to import txt into mysql in Linux

Recommend

Implementing CommonJS modularity in browsers without compilation/server

Table of contents introduction 1. What is one-cli...

MySQL 8.0.14 installation and configuration method graphic tutorial

This article records the installation and configu...

Element sample code to implement dynamic table

Table of contents 【Code background】 【Code Impleme...

The pitfall of MySQL numeric type auto-increment

When designing table structures, numeric types ar...

Some suggestions for HTML beginners and novices, experts can ignore them

Feelings: I am a backend developer. Sometimes when...

How to optimize MySQL performance through MySQL slow query

As the number of visits increases, the pressure o...

Rainbow button style made with CSS3

Result: Implementation code: html <div class=&...

Implementation code for using mongodb database in Docker

Get the mongo image sudo docker pull mongo Run th...

Detailed explanation of nginx reverse proxy webSocket configuration

Recently, I used the webSocket protocol when work...

MySQL NULL data conversion method (must read)

When using MySQL to query the database and execut...

Solution to forgetting the root password of MySQL 5.7 and 8.0 database

Note: To crack the root password in MySQL5.7, you...

Detailed explanation of how to use join to optimize SQL in MySQL

0. Prepare relevant tables for the following test...

Vue implements image drag and drop function

This article example shares the specific code of ...

Vue uses Echarts to implement a three-dimensional bar chart

This article shares the specific code of Vue usin...

jQuery to achieve sliding stairs effect

This article shares the specific code of jQuery t...