我正在使用 sys.* 视图收集元数据,根据文档, sys.identity_columns 视图将像这样返回种子和增量值。
CREATE TABLE ident_test (
test_id int IDENTITY(1000,10),
other int
)
SELECT name, seed_value, increment_value
FROM sys.identity_columns
WHERE object_id = OBJECT_ID( 'ident_test' )
但是,上面的查询只返回一列。只有我吗?
(注意:我不得不从早期版本中改变这个问题。)