Detailed analysis of SQL execution steps

Detailed analysis of SQL execution steps

Detailed analysis of SQL execution steps

Let's first look at the order in which statements are executed.

(8)select (9)distinct A (1)from Ta (3)join Tb 
(2) on XXX (4) where XXX (5) group by XXX (6) with 
{cube|roll up} (7)having XXX (10)order by XXX (11)limit XXX

Next, let's take a look at the various stages of query processing:

  1. FROM performs a Cartesian set on the left and right tables in the from clause to generate a virtual table VT1
  2. ON performs on-filtering on virtual table VT1, and only those rows that meet the join condition are inserted into virtual table VT2
  3. JOIN If outer join is specified, the unmatched rows in the retained table are added as outer rows to virtual table VT2, resulting in virtual table VT3. If the from clause contains more than two tables, repeat steps 1 to 3 for VT3 and the next table in the result table generated by the previous connection until all tables are processed.
  4. WHERE performs a where filter on virtual table VT3, and only those that meet the conditions are inserted into virtual table VT4.
  5. GROUP BY groups the records in VT4 according to the columns in the group by clause to generate VT5.
  6. CUBE|ROLL UP Perform CUBE or ROLLUP operation on table VT5 to generate table VT6.
  7. HAVING applies the having filter to virtual table VT6, and only records that meet the conditions will be inserted into virtual table VT7
  8. SELECT executes the select operation for the second time, selects the specified columns, and inserts them into the virtual table VT8.
  9. DISTINCT removes duplicate data and generates a virtual table VT9.
  10. ORDER BY Sorts the records in virtual table VT9 according to the specified requirements and generates virtual table VT10
  11. LIMIT retrieves the records of the specified row, generates a virtual table VT11, and returns it to the query user

If you have any questions, please leave a message or come to the community to discuss. Thank you for reading and I hope it can help you. Thank you for your support of this site!

You may also be interested in:
  • Example of how to use PHP to implement mysqli batch execution of multiple statements
  • Execute dynamic queries using non-dynamic SQL Server SQL statements
  • How to build and execute dynamic SQL statements in SQL SERVER
  • Mybatis plugin: Print SQL and its execution time implementation method
  • Mysql uses the kill command to solve the deadlock problem (kill a certain SQL statement being executed)
  • Solution to MySQL service 1067 error: modify the mysql executable file path
  • MySql batch insert optimization Sql execution efficiency example detailed explanation
  • Oracle View the Sql Statements with the Slowest Execution and the Most Query Times

<<:  CocosCreator learning modular script

>>:  Detailed explanation of how to use several timers in CocosCreator

Recommend

A MySQL migration plan and practical record of pitfalls

Table of contents background Solution 1: Back up ...

Create a movable stack widget function using flutter

This post focuses on a super secret Flutter proje...

In-depth analysis of HTML table tags and related line break issues

What is a table? Table is an Html table, a carrie...

Examples of using HTML list tags dl, ul, ol

Copy code The code is as follows: <!-- List ta...

How to install and use Ubuntu Docker

Table of contents 1. Automatic installation using...

HTML adaptive table method

<body style="scroll:no"> <tabl...

MySQL 8.0.17 installation and configuration graphic tutorial

This article records the graphic tutorial of MySQ...

Graphic tutorial on configuring log server in Linux

Preface This article mainly introduces the releva...

MySQL Installer 8.0.21 installation tutorial with pictures and text

1. Reason I just needed to reinstall MySQL on a n...

Detailed explanation of Java calling ffmpeg to convert video format to flv

Detailed explanation of Java calling ffmpeg to co...

How to view the docker run startup parameter command (recommended)

Use runlike to view the docker run startup parame...

Markup Languages ​​- Lists Again

Click here to return to the 123WORDPRESS.COM HTML ...

Implementing a web calculator with native JavaScript

This article shares the specific code of JavaScri...

HTML multi-header table code

1. Multi-header table code Copy code The code is a...