SQLThe column introduces ten steps to completely understand SQL
Recommended (Free): SQL
Many programmers regard SQL as a scourge. SQL is one of the few declarative languages that operates completely differently from the command line languages, object-oriented programming languages, and even functional languages we are familiar with (although some people think that the SQL language is also a functional language ).
We write SQL every day and apply it in the open source software jOOQ. So I want to introduce the beauty of SQL to those friends who still have headaches about it, so this article is specially written for the following readers:
1. I will use SQL at work but I don’t know much about it. People who don’t fully understand.
2. People who are proficient in using SQL but do not understand its grammatical logic.
3. People who want to teach others SQL.
This article focuses on the SELECT sentence pattern, and other DML (Data Manipulation Language data manipulation language commands) will be introduced in other articles.
10 simple steps to fully understand SQL
1. SQL is a declarative language
First of all Keep this concept in mind: "statement". The SQL language is an example of declaring for the computer what kind of results you want to get from the raw data, rather than telling the computer how to get the results. Isn't this great?
(Translator's Note: Simply put, the SQL language declares the properties of the result set. The computer will select the data that meets the declaration from the database based on what the SQL declares, rather than traditional programming thinking. To instruct the computer how to operate.)
SELECT first_name, last_name FROM employees WHERE salary > 100000
The above example is easy to understand. We don’t care where these employee records come from. All we need is the data of those with high salaries (Translator’s Note: salary>100000) .
Where did we learn this?
If the SQL language is so simple, then what makes people "turn pale after hearing SQL"? The main reason is that we subconsciously think about problems according to the imperative programming way of thinking. It's like this: "Computer, do this step first, then that step, but before that check whether condition A and condition B are met." For example, using variables to pass parameters, using loop statements, iteration, calling functions, etc. are all thinking habits of this imperative programming.
2. SQL syntax is not executed in the syntactic order
SQL statements have a feature that confuses most people, that is: the execution order of SQL statements It is inconsistent with the grammatical order of its statements. The syntax sequence of SQL statements is:
- SELECT[DISTINCT]
- FROM
- WHERE
- GROUP BY
- HAVING
- UNION
- ORDER BY
For the convenience of understanding, not all SQL syntax structures are listed above, but it is enough to explain the syntax sequence and order of SQL statements. The execution order is completely different. Taking the above statement as an example, the execution order is:
- FROM
- WHERE
- GROUP BY
- HAVING
- SELECT
- DISTINCT
- UNION
- ORDER BY
Regarding the execution order of SQL statements, there are three things worth mentioning Things to note:
1. FROM is the first step in SQL statement execution, not SELECT. The first step for a database to execute a SQL statement is to load data from the hard disk into the data buffer so that it can be operated on. (Translator's Note: The original text is "The first thing that happens is loading data from the disk into memory, in order to operate on such data.", but this is not the case. Taking commonly used databases such as Oracle as an example, the data is extracted from the hard disk. Go to the data buffer to operate.)
2. SELECT is executed after most statements are executed. Strictly speaking, it is executed after FROM and GROUP BY. It is very important to understand this, which is why you cannot use a field in WHERE that is aliased in SELECT as a condition.
SELECT A.x + A.y AS z FROM A WHERE z = 10 -- z 在此处不可用,因为SELECT是最后执行的语句!
If you want to reuse alias z, you have two options. Either rewrite the expression represented by z:
SELECT A.x + A.y AS z FROM A WHERE (A.x + A.y) = 10
...or resort to derived tables, common data expressions, or views to avoid alias reuse. See the examples below.
3. Whether in syntax or execution order, UNION is always ranked before ORDER BY. Many people think that every UNION segment can be sorted using ORDER BY, but according to the SQL language standard and the implementation differences of SQL in each database, this is not true. Although some databases allow SQL statements to sort subqueries or derived tables, this does not mean that the sorting will remain in the sorted order after the UNION operation.
Note: Not all databases use the same parsing method for SQL statements. For example, MySQL, PostgreSQL and SQLite will not perform as mentioned in the second point above.
What did we learn?
既然并不是所有的数据库都按照上述方式执行 SQL 预计,那我们的收获是什么?我们的收获是永远要记得:SQL 语句的语法顺序和其执行顺序并不一致,这样我们就能避免一般性的错误。如果你能记住 SQL 语句语法顺序和执行顺序的差异,你就能很容易的理解一些很常见的 SQL 问题。
当然,如果一种语言被设计成语法顺序直接反应其语句的执行顺序,那么这种语言对程序员是十分友好的,这种编程语言层面的设计理念已经被微软应用到了 LINQ 语言中。
3、 SQL 语言的核心是对表的引用(table references)
由于 SQL 语句语法顺序和执行顺序的不同,很多同学会认为SELECT 中的字段信息是 SQL 语句的核心。其实真正的核心在于对表的引用。
根据 SQL 标准,FROM 语句被定义为:
<from> ::= FROM <table> [ { <comma> <table> }... ]<p>FROM 语句的“输出”是一张联合表,来自于所有引用的表在某一维度上的联合。我们们慢慢来分析:</p> <pre class="brush:php;toolbar:false">FROM a, b
上面这句 FROM 语句的输出是一张联合表,联合了表 a 和表 b 。如果 a 表有三个字段, b 表有 5 个字段,那么这个“输出表”就有 8 ( =5+3)个字段。
这个联合表里的数据是 ab,即 a 和 b 的笛卡尔积。换句话说,也就是 a 表中的每一条数据都要跟 b 表中的每一条数据配对。如果 a 表有3 条数据, b 表有 5 条数据,那么联合表就会有 15 ( =53)条数据。
FROM 输出的结果被 WHERE 语句筛选后要经过 GROUP BY 语句处理,从而形成新的输出结果。我们后面还会再讨论这方面问题。
如果我们从集合论(关系代数)的角度来看,一张数据库的表就是一组数据元的关系,而每个 SQL 语句会改变一种或数种关系,从而产生出新的数据元的关系(即产生新的表)。
我们学到了什么?
思考问题的时候从表的角度来思考问题提,这样很容易理解数据如何在 SQL 语句的“流水线”上进行了什么样的变动。
4、 灵活引用表能使 SQL 语句变得更强大
灵活引用表能使 SQL 语句变得更强大。一个简单的例子就是 JOIN 的使用。严格的说 JOIN 语句并非是 SELECT 中的一部分,而是一种特殊的表引用语句。SQL 语言标准中表的连接定义如下:
The above is the detailed content of Introducing ten steps to fully understand SQL. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于SQL的相关知识,其中主要介绍了SQL Server使用CROSS APPLY与OUTER APPLY实现连接查询的方法,文中通过示例代码介绍的非常详细,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于SQL server的相关知识,其中主要介绍了SQL SERVER没有自带的解析json函数,需要自建一个函数(表值函数),下面介绍关于SQL Server解析/操作Json格式字段数据的相关资料,希望对大家有帮助。

如何优化sql中的orderBy语句?下面本篇文章给大家介绍一下优化sql中orderBy语句的方法,具有很好的参考价值,希望对大家有所帮助。

monacoeditor创建//创建和设置值if(!this.monacoEditor){this.monacoEditor=monaco.editor.create(this._node,{value:value||code,language:language,...options});this.monacoEditor.onDidChangeModelContent(e=>{constvalue=this.monacoEditor.getValue();//使value和其值保持一致i

本篇文章给大家带来了关于SQL server的相关知识,开窗函数也叫分析函数有两类,一类是聚合开窗函数,一类是排序开窗函数,下面这篇文章主要给大家介绍了关于SQL中开窗函数的相关资料,文中通过实例代码介绍的非常详细,需要的朋友可以参考下。

0x01前言概述小编又在MySQL中发现了一个Double型数据溢出。当我们拿到MySQL里的函数时,小编比较感兴趣的是其中的数学函数,它们也应该包含一些数据类型来保存数值。所以小编就跑去测试看哪些函数会出现溢出错误。然后小编发现,当传递一个大于709的值时,函数exp()就会引起一个溢出错误。mysql>selectexp(709);+-----------------------+|exp(709)|+-----------------------+|8.218407461554972

当某些sql因为不知名原因堵塞时,为了不影响后台服务运行,想要给sql增加执行时间限制,超时后就抛异常,保证后台线程不会因为sql堵塞而堵塞。一、yml全局配置单数据源可以,多数据源时会失效二、java配置类配置成功抛出超时异常。importcom.alibaba.druid.pool.DruidDataSource;importcom.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceBuilder;importorg.apache.

monacoeditor创建//创建和设置值if(!this.monacoEditor){this.monacoEditor=monaco.editor.create(this._node,{value:value||code,language:language,...options});this.monacoEditor.onDidChangeModelContent(e=>{constvalue=this.monacoEditor.getValue();//使value和其值保持一致i


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

WebStorm Mac version
Useful JavaScript development tools

Dreamweaver CS6
Visual web development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version
Chinese version, very easy to use
