当前位置:网站首页>Execution of SQL statement
Execution of SQL statement
2020-11-08 21:14:00 【Let me love you】
SQL, Script query language , The order in which the code is processed is not in the order of the scripting language , This is the most obvious feature different from other programming languages .
SQL Language is common, such as ,Mysql,HiveQL,Oracle etc. , Although there are some grammatical differences , But they're interpreting query scripts , In particular, the execution sequence of parsing statements has commonness . If you decompose a scripting language into a series of statements , So what is the order of execution of these statements ?
Select Statement execution order
select
The execution order of the query statement , It can be seen that the first execution is FROM
Clause , Finally, execute ORDER BY
Execution order :
(1) FROM
(2) ON
(3) JOIN
(4) WHERE
(5) GROUP BY
(6) WITH {CUBE | ROLLUP}
(7) HAVING
(8) SELECT
(9) DISTINCT
(10) ORDER BY
(11) LIMIT
7 SELECT ( Query content )
1 FROM <left table> ( Query the main table )
3 <join type> JOIN <right table> ( Associated table )
2 ON <join condition> ( The condition of two tables Association )
4 WHERE ( Conditions for filtering query results )
5 GROUP BY ( Grouping conditions )
6 HAVING ( Conditions for filtering groups )
8 ORDER BY ( Sorting conditions )
# The preceding number is the order in which the actual program is executed ,
# To develop a good code format , The empty line, the empty line , It should be capitalized ( Try to keep the words in uppercase for database operations , Keep the contents of library, table and column in lowercase as much as possible )
A brief introduction to the above logical sequence
Each of the above steps produces a virtual table , The virtual table is used as input for the next step . Only the table generated in the last step is returned to the caller .
- FROM: Yes FROM The first two tables in the clause perform the cartesian product ( Cross connection ), Generate virtual tables VT1, Select a relatively small table as the base table .
- ON: Yes VT1 application ON Filter , Only those that are true are inserted VT2.
- OUTER (JOIN): If you specify OUTER JOIN( be relative to CROSS JOIN or INNER JOIN), No matching rows were found in the reservation table to be added as external rows to VT2, Generate TV3.
- WHERE: Yes VT3 application WHERE Filter , Only the emissary true Rows of VT4.
- GROUP BY: Press GROUP BY Column pairs in clause VT4 Group the rows in , Generate VT5.
- CUTE|ROLLUP: Insert the supergroup into VT5, Generate VT6.
- HAVING: Yes VT6 application HAVING Filter , Only the emissary true The group inserted into VT7.
- SELECT: Handle SELECT list , produce VT8.
- DISTINCT: Repeat lines from VT8 Delete in , obtain VT9.
- ORDER BY: take VT9 The lines in the press ORDER BY Column list order in the clause , Generate a cursor (VC10).
- LIMIT(TOP): from VC10 Selects the rows at the beginning of , To generate table VT11, And return it to the caller .
版权声明
本文为[Let me love you]所创,转载请带上原文链接,感谢
边栏推荐
- 云计算之路-出海记-小目标:Hello World from .NET 5.0 on AWS
- Experiment 1 assignment
- Iptables from introduction to mastery
- 第五章
- Problem solving templates for subsequence problems in dynamic programming
- 使用基于GAN的过采样技术提高非平衡COVID-19死亡率预测的模型准确性
- Python的特性与搭建环境
- Array acquaintance
- How to make scripts compatible with both Python 2 and python 3?
- Brief VIM training strategy
猜你喜欢
随机推荐
AI人工智能编程培训学什么课程?
Django之简易用户系统(3)
200人的程序员面试经验,都在这里了
装饰器(一)
JVM Zhenxiang series: easy understanding of class files to virtual machines (Part 2)
What courses will AI programming learn?
Creating a text cloud or label cloud in Python
The interface testing tool eolinker makes post request
中缀表达式转后缀表达式
使用Fastai开发和部署图像分类器应用
go语言参数传递到底是传值还是传引用?
解决IE、firefox浏览器下JS的new Date()的值为Invalid Date、NaN-NaN的问题
Newbe.ObjectVisitor 样例 1
Creating a text cloud or label cloud in Python
Countdownlatch explodes instantly! Based on AQS, why can cyclicbarrier be so popular?
Part 1 - Chapter 2 pointer operation
Case analysis of entitycore framework
Development and deployment of image classifier application with fastai
The minimum insertion times of palindrome
经典动态规划:最长公共子序列