SQL Server中获取数据库中自动增长字段的函数是什么

2024-11-15 22:41:08
推荐回答(3个)
回答(1):

查看某个表是否存在自动增长字段:
select * from syscolumns where id=object_id('表名') and columnproperty(id,name,'isidentyty')=1

回答(2):

identity(int,1,1)

回答(3):

identity