如何从X

时间:2017-01-26 13:50:40

标签: sql sql-server

我现在在SQL服务器上有一个表,我想在其中添加PART_NO列。它需要从数字107开始自动递增(1,2,3等)。

我该怎么办?

2 个答案:

答案 0 :(得分:11)

使用alter table add使用identity()添加具有标识(自动增量)属性的列,您可以设置第一行的种子值和增量编号。 identity(seed,increment)

alter table [tbl] add part_no int identity (107,1) not null;

答案 1 :(得分:-1)

使用以下命令

Alter table tablename add columnname int identity <starting number,incremented by> not null;