我可以使用 SQL Server 标识列来确定行的插入顺序吗?

发布于 2024-07-16 09:41:49 字数 78 浏览 3 评论 0原文

我需要能够确定将行插入表中的顺序(没有更新)。 我可以使用身份列来执行此操作吗? 我知道可能存在间隙,但是这些值是否能保证按插入顺序增加?

I need to be able to determine the order which rows have been inserted into a table (there are no updates). Can I use an identity column to do this? I know that there may be gaps, but are the values guaranteed to be increasing by insertion order?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

半山落雨半山空 2024-07-23 09:41:49

基本上是的,只要您不重置它或通过批量复制插入行,或者使用 IDENTITY_INSERT。 当然,假设您没有溢出数据类型(这可能令人印象深刻)。

Largely yes, as long as you don't ever reset it or insert rows with bulk copy, or use IDENTITY_INSERT. And of course assuming that you don't overflow the data-type (which could be impressive).

在巴黎塔顶看东京樱花 2024-07-23 09:41:49

是的。 因删除而产生的任何间隙将不会被重复使用

Yes. Any gaps caused by deletions will not be reused

顾北清歌寒 2024-07-23 09:41:49

正如马克所讨论的,是的,您可以在附带条件下使用

,但是要明确解决问题,您应该做的是添加一列,

dteInserted datetime not null default getdate()

然后您只需选择按此排序即可。

我自己会自动将这样的列添加到我正在设计的任何数据库中的任何“数据”表中。 如今,存储很便宜,并且在行上添加时间戳总是在某些时候很有用。

As discussed by Marc, yes you can with provisos

What you should do however to definitively fix the problem is add a column

dteInserted datetime not null default getdate()

Then you just select ordered by this.

Myself I automatically add such a column onto any 'data' table in any database I'm designing. Storage is cheap nowadays and timestamping the insertion date on a row is always useful at some point.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文