MySQL multi-table query detailed explanation

MySQL multi-table query detailed explanation

Time always passes surprisingly fast without us noticing. The Lesser Heat has passed and we have entered the Middle Heat. The sun is shining even more brightly... People who are outside being cared for by the sun, you are all hardworking and lovely people. You who have been reading this chapter of mine in various postures in the house, now that you have clicked in, let me continue to review the knowledge of MySql with you!

Review the practice data girls library and the scripts of the two tables:

Link: https://pan.baidu.com/s/1bgFrP7dBBwk3Ao755pU4Qg Extraction code: ihg7

Introduction: Descartes phenomenon, let’s first look at the two tables.

SELECT * FROM boys; 

SELECT * FROM beauty; 

SELECT NAME,boyname FROM boys,beauty;
Final result: 12*4=48 rows 

#Advanced 6: Join query Meaning: Also known as multi-table query, when the query fields come from multiple tables, join query is used Cartesian product phenomenon: Table 1 has m rows, Table 2 has n rows, result = m*n rows Cause: No valid join condition Solution: Add valid join condition Join category:
   By era:
   SQL1992 standard (192 standard): only supports inner joins SQL1999 standard (199 standard) [Recommendation]: supports inner joins + outer joins (left outer and right outer) + cross joins Classification by function:
   Inner join:
     Equi-join Non-equi-join Self-join Outer join:
     Left outer join right outer join full outer join cross join:
      Left outer join right outer join full outer join cross join:
SELECT NAME,boyname FROM boys,beauty
WHERE beauty.boyfriend_id = boys.id; 

#I. SQL192 Standard #1. Equi-join ① The result of multi-table equi-join is the intersection of multiple tables ② For n-table join, at least n-1 join conditions are required ③ There is no requirement for the order of multiple tables ④ Generally, an alias is required for the table ⑤ It can be used with all the clauses introduced above, such as sorting, grouping, and filtering.
#Multi-table query, match first and then filter#Case 1. Query employee name and corresponding department name.
SELECT first_name AS name,department_name AS department_name FROM employees,departments
WHERE employees.department_id = departments.department_id; 

#Case 2. Query employee name, job number, and job name. For fields shared by two tables, you need to add the table name as a limit, otherwise an error will be reported.
Error example:
SELECT first_name AS name,employees.job_id AS job number,job_title AS job name FROM employees,jobs
WHERE employees.job_id = jobs.job_id;
#2. Alias ​​the table ① Improve the simplicity of the statement ② Distinguish multiple renamed fields Note: If you give the table an alias, the query field cannot be limited by the original table name SELECT first_name AS name, e.job_id AS job number, job_title AS job name FROM employees AS e, jobs AS j
WHERE e.job_id = j.job_id; 

If you give a table an alias and then use the full table name to qualify it, an error will be reported and it is not allowed. According to the execution order, FROM is executed first.
After completing FROM, the alias is used, which is equivalent to generating a virtual view and no longer recognizing the original table name.

#3. Can the order of the two table names be swapped? Yes, they can.
SELECT first_name AS name, e.job_id AS job number, job_title AS job nameFROM jobs AS j, employees AS e
WHERE e.job_id = j.job_id;

#4. You can add filters#Case 3. Query the names of employees and departments who have bonuses.
SELECT first_name AS name,department_name AS department_name,commission_pct AS bonus FROM employees AS e,departments AS d
WHERE e.department_id=d.department_id
AND commission_pct IS NOT NULL; #AND e.commission_pct IS NOT NULL; 

#Case 4. Query the city name and department name corresponding to the second character of the city name being o.
SELECT city AS city,department_name AS department_name FROM locations AS l,departments AS d
WHERE l.location_id = d.location_id
AND city LIKE '_o%'; 

#5. You can add groups#Case 1. Query the number of departments in each city.
SELECT city AS city,COUNT(department_id) AS numberFROM locations AS l,departments AS d
WHERE l.location_id = d.location_id
GROUP BY l.city; 

#Case 2. Query the department name, leader number and minimum salary of each department with bonus.
#Don't be sure to add both columns when querying.
SELECT commission_pct AS bonus, department_name AS department name,
d.manager_id AS leadership number,MIN(salary) AS minimum salary FROM employees AS e,departments AS d
WHERE e.department_id = d.department_id
AND commission_pct IS NOT NULL
GROUP BY department_name,d.manager_id; 

#6. You can add sorting#Case 1: Query the job name and number of employees for each job type, and sort by the number of employees in descending order.
SELECT j.job_title AS job name,COUNT(employee_id) AS numberFROM employees AS e,jobs AS j
WHERE e.job_id = j.job_id
GROUP BY job_title
ORDER BY number DESC; 

#7. Three-table join #Case 1. Query employee name, department name and city SELECT first_name AS name, d.manager_id AS department name, city AS city FROM employees AS e, departments AS d, locations AS l
WHERE e.department_id = d.department_id
 AND d.location_id = l.location_id; 

#Case 2. Query employee name, department name and city, where the city starts with s.
SELECT first_name AS name, d.manager_id AS department name, city AS city FROM employees AS e, departments AS d, locations AS l
WHERE e.department_id = d.department_id
AND d.location_id = l.location_id
 AND city LIKE 's%'; 

#Case 3. Query employee name, department name and city, where the city starts with s, and sort by name in descending order.
SELECT first_name AS name, d.manager_id AS department name, city AS city FROM employees AS e, departments AS d, locations AS l
WHERE e.department_id = d.department_id
AND d.location_id = l.location_id
AND city LIKE 's%'
ORDER BY department_name DESC; 

Add a new salary grade table.
CREATE TABLE job_grades
(grade_level VARCHAR(3),
 lowest_sal int,
 highest_sal int);
INSERT INTO job_grades
VALUES ('A', 1000, 2999);
INSERT INTO job_grades
VALUES ('B', 3000, 5999);
INSERT INTO job_grades
VALUES('C', 6000, 9999);
INSERT INTO job_grades
VALUES('D', 10000, 14999);
INSERT INTO job_grades
VALUES('E', 15000, 24999);
INSERT INTO job_grades
VALUES('F', 25000, 40000); 

#2. Non-equivalued join, (range judgment)
#Case 1. Query employees' salaries and salary levels.
SELECT salary AS salary, grade_level AS grade FROM employees AS e, job_grades AS g
WHERE salary BETWEEN g.lowest_sal AND g.highest_sal; 

#Case 2. Query employees’ salaries and salary levels, and display employees at level A.
SELECT salary AS salary, grade_level AS grade FROM employees AS e, job_grades AS g
WHERE salary BETWEEN g.lowest_sal AND g.highest_sal
AND g.grade_level = 'A'; 

#3. Self-connection [connecting to itself] 

#Case 1. Query the employee name and the name of the supervisor.
SELECT e.employee_id,e.last_name AS employee,
m.employee_id,m.last_name AS leader FROM employees e,employees m
WHERE e.manager_id = m.employee_id; 

After reading the above examples, I believe you have an understanding of multi-table query. Let's practice it now! o(^▽^)o

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

<<:  JavaScript implements an input box component

>>:  Native js to realize bouncing ball

Recommend

Detailed explanation of the order of JS object traversal

Some of you may have heard that the order of trav...

Ubuntu 20.04 firewall settings simple tutorial (novice)

Preface In today's increasingly convenient In...

Use CSS variables to achieve cool and amazing floating effects

Recently, I found a fun hover animation from the ...

WeChat applet implements a simple calculator

WeChat applet's simple calculator is for your...

Cause Analysis and Solution of I/O Error When Deleting MySQL Table

Problem phenomenon I recently used sysbench to te...

My CSS framework - base.css (reset browser default style)

Copy code The code is as follows: @charset "...

React+ts realizes secondary linkage effect

This article shares the specific code of React+ts...

Uncommon but useful tags in Xhtml

Xhtml has many tags that are not commonly used but...

Examples of using the Li tag in HTML

I hope to align the title on the left and the dat...

Implement a simple data response system

Table of contents 1. Dep 2. Understand obverser 3...

Detailed explanation of the use of Vue Smooth DnD, a draggable component of Vue

Table of contents Introduction and Demo API: Cont...