Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在脚本中创建了一个带有标识列的表变量,我想重新设置该列的种子。我可以使用下面的脚本吗?
DBCC CHECKIDENT (tableVariableName, reseed, @NewStartSeedValue)
您不能重新设定表变量的标识列,您需要改用临时表。根据您要执行的操作,排名函数 ( row_number()) 可能有用。
row_number()