SELECT查询总是返回相同顺序的行吗?带聚集索引的表 [英] Does a SELECT query always return rows in the same order? Table with clustered index

查看:141
本文介绍了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查询总是返回相同顺序的行吗?带聚集索引的表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆