Does a SELECT query always return rows in the same order? Table with clustered index(SELECT 查询是否总是以相同的顺序返回行?带有聚集索引的表)
问题描述
我的 select *
查询是否总是以相同的顺序返回我的数据库表中的行?
Will my select *
query always return the rows from my database table in the same order?
我的表的一列有一个聚集索引".这会改变答案吗?
My table has a 'clustered index' on one column. Does that change the answer?
推荐答案
返回的行的顺序将不始终相同,除非您使用 ORDER BY明确说明代码> 子句.所以,没有.
The order of the returned rows will not always be the same unless you explicitly state so with the ORDER BY
clause. So, no.
没有;仅仅因为您的 1000 个查询返回了相同的顺序,它不能保证第 1001 个查询的顺序相同.
And no; just because your 1000 queries have returned the same order it's no guarantee the 1001th query will be in the same order.
这篇关于SELECT 查询是否总是以相同的顺序返回行?带有聚集索引的表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:SELECT 查询是否总是以相同的顺序返回行?带有聚集索引的表


- 导入具有可变标题的 Excel 文件 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 更改自动增量起始编号? 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- SQL 临时表问题 2022-01-01