我现在在SQL服务器中有一个表,我想在其中添加PART_NO列.它需要从数字107开始自动递增(1,2,3等).
我怎么能这样做?
使用alter table add您添加具有标识(自动增量)属性的列identity()可以设置第一行的种子值和增量编号.identity(seed,increment).
alter table add
identity()
identity(seed,increment)
alter table [tbl] add part_no int identity (107,1) not null;