SQL Anywhere 自动增量重置

发布于 2024-07-22 11:15:54 字数 143 浏览 4 评论 0原文

我有一个 SQL Anywhere 9 数据库,我想将其中一列的自动增量值重置为特定数字。

我想我需要 SQL-Anywhere 等效项:

ALTER TABLE foo AUTO_INCRMENT =100

I've got a SQL Anywhere 9 database, and I would like to reset the autoincrement value on one of my columns to a specific number.

I guess I need the SQL-Anywhere equivalent of:

ALTER TABLE foo AUTO_INCREMENT =100

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

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

发布评论

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

评论(3

寻梦旅人 2024-07-29 11:15:54

所以答案实际上就在这里,而不仅仅是链接到:

使用 sa_reset_identity 系统过程:

sa_reset_identity (
  [ table_name
  [, owner
  [, new_identity_value ] ] ]
)

Just so the answer is actually here, not just linked to:

Use the sa_reset_identity system procedure:

sa_reset_identity (
  [ table_name
  [, owner
  [, new_identity_value ] ] ]
)
羁〃客ぐ 2024-07-29 11:15:54

出现了 Google 搜索这个。 我从未使用过 SQL Anywhere,所以我恐怕无法再提供帮助。

A google search turned up this. I have never used SQL Anywhere, so I'm afraid I can't help anymore.

热鲨 2024-07-29 11:15:54

正确的系统过程是 sa_reset_identity

CALL sa_reset_identity('table_name', 'user_name', new_start_value -1);

例如,您有一个名为 CITIES 的表,用户是 DBA,并且您希望自动增量以值 <强>1。 您的代码为:

CALL sa_reset_identity('cities', 'DBA', 0);

来源http://www.sqlines。 com/sybase-asa/autoincrement_identity

The correct system procedure is sa_reset_identity

CALL sa_reset_identity('table_name', 'user_name', new_start_value -1);

For example, you have a table called CITIES, a user DBA and you want the autoincrement to start with value 1. Your code would be:

CALL sa_reset_identity('cities', 'DBA', 0);

Source: http://www.sqlines.com/sybase-asa/autoincrement_identity

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