SQL: What is the default Order By of queries?(SQL:查询的默认顺序是什么?)
问题描述
不使用ORDER BY
时查询的默认顺序是什么?
What is the default order of a query when no ORDER BY
is used?
推荐答案
目前没有这样的顺序.取自 http://forums.mysql.com/read.php?21,239471,239688#msg-239688
There is no such order present. Taken from http://forums.mysql.com/read.php?21,239471,239688#msg-239688
当 ORDER BY 缺失时不要依赖于顺序.
Do not depend on order when ORDER BY is missing.
如果你想要一个特定的顺序,总是指定 ORDER BY——在某些情况下,引擎可以消除 ORDER BY,因为它是如何做一些其他的步骤.
Always specify ORDER BY if you want a particular order -- in some situations the engine can eliminate the ORDER BY because of how it does some other step.
SELECT * FROM tbl
-- 这将执行表扫描".如果表有从来没有任何 DELETEs/REPLACEs/UPDATEs,记录将恰好是在插入顺序中,因此您观察到了什么.
SELECT * FROM tbl
-- this will do a "table scan". If the table has
never had any DELETEs/REPLACEs/UPDATEs, the records will happen to be
in the insertion order, hence what you observed.
如果你对 InnoDB 表做了同样的语句,他们会已按 PRIMARY KEY 顺序交付,而不是 INSERT 顺序.再次,这是底层实现的工件,而不是依赖.
If you had done the same statement with an InnoDB table, they would have been delivered in PRIMARY KEY order, not INSERT order. Again, this is an artifact of the underlying implementation, not something to depend on.
这篇关于SQL:查询的默认顺序是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:SQL:查询的默认顺序是什么?


基础教程推荐
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- oracle区分大小写的原因? 2021-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- 在多列上分布任意行 2021-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01