自动增量选项

发布于 2024-10-31 07:16:21 字数 66 浏览 5 评论 0原文

我需要将数据库行中特定列的自动递增选项设置为 true,以便每次插入新行时该值都会递增。

我该怎么做?

I need to set the auto increment option for a particular column in a row of a database to be true so that the value increments each time a new row is inserted.

How do i do that?

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

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

发布评论

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

评论(2

白云不回头 2024-11-07 07:16:21

您可以在 TSQL 中使用 IDENTITY 属性

CREATE TABLE new_employees
(
 id_num int IDENTITY(1,1),
 fname varchar (20),
 minit char(1),
 lname varchar(30)
);

You can use IDENTITY property in TSQL

CREATE TABLE new_employees
(
 id_num int IDENTITY(1,1),
 fname varchar (20),
 minit char(1),
 lname varchar(30)
);
眼前雾蒙蒙 2024-11-07 07:16:21

试试这个

数据库列本身必须指定为标识...

  • 使用 SQL Management Studio,打开表
  • 展开 Identity Specific
  • Is Identity 的值更改为
  • 身份增量现在将为1,如有必要请更改它

Try this

The database column itself must be specified to be an identity...

  • Using SQL Management Studio, open the table
  • Expand the Identity Specification tree
  • Alter the value of Is Identity to Yes
  • Identity Increment will now be 1, change it if necessary
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文