MySQL multi-table query detailed explanation

MySQL multi-table query detailed explanation

Eating well and getting enough rest sounds simple, but it is not so easy to implement in practice.

Continue to review the 1999 syntax of MySql multi-table query

#2, SQL1999 syntax:
 SELECT query list FROM table1 alias [connection type]
 JOIN table 2 alias ON link condition [WHERE filter condition]
 GROUP BY
 【HAVING filter conditions】
 【ORDER BY sort list ASC|DESC】

Category (connection type):
 Inner join (★): INNER
 Outer join left outer (★): LEFT 【OUTER】
 Right outer (★): RIGHT 【OUTER】
 FULL 【OUTER】
 Cross connection: CROSS

===============================================================================

1. Inner join syntax:
 SELECT query list FROM table 1 alias INNER JOIN table 2 alias ON join condition [WHERE filter condition]
 GROUP BY
 【HAVING Filter Group】
 【ORDER BY sort list ASC|DESC】

Classification:
 Characteristics of equal and non-equal value self-connection:
 ①Add sorting, grouping, and filtering ②INNER can be omitted ③Put the filtering conditions after WHERE and the connection conditions after ON to improve separation and facilitate reading.
 ④The effect of INNER JOIN connection is the same as the equivalent connection in SQL1992 syntax, both of which query the intersection part.
#1. Equivalent connection #Case 1. Query employee name and department name. Swapping the join conditions does not affect the results.
SELECT last_name AS employee_name,department_name AS department_name FROM employees_name
INNER JOIN departments d
ON e.department_id=d.department_id;
SELECT last_name AS employee_name,department_name AS department_name FROM employees_name
INNER JOIN departments e
ON e.department_id=d.department_id; 

#Case 2. Query employees and job names containing "e" (screening)
SELECT last_name AS employee name, job_title AS job title FROM employees e
INNER JOIN jobs j
ON e.job_id=j.job_id
WHERE e.last_name LIKE '%e%'; 

#Case 3. Query the city names and department numbers where the number of departments is > 3. (Grouping + Filtering)
Step by step: first find out the number of departments in each city, and then filter those that meet the requirements.
SELECT city AS city,COUNT(*) AS number FROM locations l
INNER JOIN departments d
ON l.location_id=d.location_id
GROUP BY city
HAVING COUNT(*) > 3; 

#Case 4. Query the department name and number of employees whose number of employees is greater than 3, and sort them in descending order.
Step by step:
1. Query the number of employees in each department,
2. Filter out the records with more than 3 employees in the above results.
3. Sort the number of employees SELECT COUNT(*) AS number of employees, d.department_name AS department name FROM employees e
INNER JOIN departments d
ON e.department_id=d.department_id
GROUP BY d.department_name
HAVING COUNT(*) > 3
ORDER BY employee_number DESC; 

#Case 5. Query employee name, department name, job name, and sort by department name in descending order. Pay attention to the conditions when connecting the three tables.
SELECT last_name AS employee name, department_name AS department name,
job_title AS job name FROM employees e
INNER JOIN departments d
ON e.department_id=d.department_id
INNER JOIN jobs j
ON e.job_id=j.job_id
ORDER BY d.department_name DESC; 

#2. Non-equivalue connection. Range (indirect)
#Case 1. Query the salary level of employees.
SELECT salary AS monthly salary, grade_level AS salary grade FROM employees e
INNER JOIN job_grades g
ON e.salary BETWEEN g.lowest_sal AND g.highest_sal; 

#Case 2. Query the number of each salary level > 20 and sort them in descending order.
SELECT j.grade_level AS grade,COUNT(*) number FROM employees e
INNER JOIN job_grades j
ON e.salary BETWEEN j.lowest_sal AND j.highest_sal
GROUP BY j.grade_level
HAVING COUNT(*) > 20
ORDER BY number DESC; 

#3.Self-join#Case 1. Query the employee's name and the supervisor's name.
SELECT e.last_name AS employee name, m.last_name AS supervisor name FROM employees e
INNER JOIN employees m
ON e.manager_id=m.employee_id; 

#Case 2. Query the employee's name and the supervisor's name, which contains the character k.
SELECT e.last_name AS employee name, m.last_name AS supervisor name FROM employees e
INNER JOIN employees m
ON e.manager_id=m.employee_id
WHERE e.last_name LIKE '%k%'; 

#2. External join application scenario: used to query records that exist in one table but not in another table.
Features:
1. The query result of the outer join is all the records in the main table. If there is a match in the secondary table, the matching value is displayed. If there is no match in the secondary table, null is displayed.
Outer join query result = inner join result + records in the main table but not in the slave table 2. Left outer join, the left side of LEFT JOIN is the main table Right outer join, the right side of RIGHT JOIN is the main table 3. The same effect can be achieved by exchanging the order of the two tables in left outer and right outer.
4. Full outer join = result of inner join + data in table 1 but not in table 2 + data in table 2 but not in table 1 (not supported by MySQL)
Import:
SELECT * FROM beauty;
SELECT * FROM boys; 

#Introduction: Query the names of goddesses whose boyfriends are not in the male god table SELECT b.NAME,bo.*
FROM beauty b
LEFT OUTER JOIN boys bo
ON b.boyfriend_id=bo.id; 

#Left outer join SELECT b.NAME,bo.*
FROM beauty b
LEFT OUTER JOIN boys bo
ON b.boyfriend_id=bo.id
WHERE bo.id IS NULL;
#Select the primary key column from the table
#Right outer join, same result.
SELECT b.NAME,bo.*
FROM boys bo
RIGHT OUTER JOIN beauty b
ON b.boyfriend_id=bo.id
WHERE bo.id IS NULL; 

#Change the boyfriend_id of row 10 in the beauty table from 4 to 6 to get the following results.
SELECT b.*,bo.*
FROM boys bo
LEFT OUTER JOIN beauty b
ON b.boyfriend_id=bo.id
WHERE b.id IS NULL; 

#Case 1. Which department has no employees.
#Left external writing method SELECT d.*,e.employee_id
FROM departments
LEFT OUTER JOIN employees e
ON d.department_id=e.department_id
WHERE e.department_id IS NULL;
==============================
#Right outer writing method SELECT d.*,e.employee_id
FROM employees
RIGHT OUTER JOIN departments d
ON d.department_id=e.department_id
WHERE e.employee_id IS NULL; 

#The result of the full outer join consists of three parts (for example, Mysql does not support) Syntax structure demonstration First find the intersection of the two tables, then find the missing filling, and then find other unrelated ones Syntax structure example SELECT b.*,bo.*
FROM beauty b
FULL OUTER JOIN boys bo
ON b.boyfriend_id=bo.id
#Cross join, Cartesian product implemented using the 1999 syntax standard SELECT b.*,bo.*
FROM beauty b
CROSS JOIN boys bo; 

#Comparison between SQL1992 syntax and SQL1999 syntax Function: SQL1999 supports more Readability: SQL1999 separates the connection conditions and the filter conditions, which improves readability

Summarize:

SELECT <select_list>
FROM A
INNER JOIN B
ON A.KEY=B.KEY; 

SELECT <select_list>
FROM A
LEFT JOIN B
ON A.KEY=B.KEY; 

SELECT <select_list>
FROM A
RIGHT JOIN B
ON A.KEY=B.KEY; 

SELECT <select_list>
FROM A
LEFT JOIN B
ON A.KEY=B.KEY
WHERE B.KEY IS NULL; 

SELECT <select_list>
FROM A
RIGHT JOIN B
ON A.KEY=B.KEY
WHERE A.KEY IS NULL; 

SELECT <select_list>
FROM A
FULL JOIN B
ON A.KEY=B.KEY; 

SELECT <select_list>
FROM A
FULL JOIN B
ON A.KEY=B.KEY
WHERE A.KEY IS NULL
OR B.KEY IS NULL;

The simple multi-table query has ended. I believe that after reading this, you should be able to easily join simple tables. As for those who don't understand, emmm...

In the words of our teacher Yang, you will get the feel of it after writing it twenty or thirty times. o(^▽^)o.

The college entrance examination is over and university life has begun. The countdown to the world belonging to you has begun... No matter what major you choose, as long as it is your own choice, you must believe that you will leave a mark in this major...

This is the end of this article on the detailed explanation of MySQL multi-table query. For more relevant MySQL multi-table query content, 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:
  • MySql multi-table query transaction and DCL
  • Detailed explanation of four types of MySQL connections and multi-table queries
  • Specific example of MySQL multi-table query
  • MySQL database advanced query and multi-table query
  • MySQL multi-table query detailed explanation
  • A brief discussion on using Cartesian product principle to query multiple tables in MySQL
  • MySQL left-join multi-table query where condition writing example
  • Analyzing the implementation of Mysql multi-table query
  • MySQL multi-table query implementation analysis
  • Detailed classification of MySQL multi-table queries

<<:  How to solve the error of PyCurl under Linux

>>:  jQuery implements a simple carousel effect

Recommend

mysql5.7.14 decompressed version installation graphic tutorial

MySQL is divided into Community Edition (Communit...

WeChat applet realizes the effect of swiping left to delete list items

This article shares the specific code for WeChat ...

Summary of Node.js service Docker container application practice

This article will not explain the use and install...

CSS3 to achieve simple white cloud floating background effect

This is a very simple pure CSS3 white cloud float...

Example method to view the IP address connected to MySQL

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

Differentiate between null value and empty character ('') in MySQL

In daily development, database addition, deletion...

Summary of related functions for Mysql query JSON results

The JSON format field is a new attribute added in...

In-depth analysis of MySQL indexes

Preface We know that index selection is the work ...

Disabled values ​​that cannot be entered cannot be passed to the action layer

If I want to make the form non-input-capable, I se...

How to install MySQL for beginners (proven effective)

1. Software Download MySQL download and installat...

Mini Program implements custom multi-level single-select and multiple-select

This article shares the specific code for impleme...

How to change the encoding of MySQL database to utf8mb4

The utf8mb4 encoding is a superset of the utf8 en...

A brief discussion on tags in HTML

0. What is a tag? XML/HTML CodeCopy content to cl...