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

2024年11月15日 22:41
有3个网友回答
网友(1):

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

网友(2):

identity(int,1,1)

网友(3):

identity