T-SQL表中Insert的自动递增Id
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了T-SQL表中Insert的自动递增Id相关的知识,希望对你有一定的参考价值。
This code allows you to create an ID field value for inserts into a table that does not auto increment itself
DECLARE @StartNumber INT = 1000 INSERT INTO Table2 SELECT (ROW_NUMBER() OVER(ORDER BY [FIELD] DESC)) + @StartNumber AS id, * FROM Table1
以上是关于T-SQL表中Insert的自动递增Id的主要内容,如果未能解决你的问题,请参考以下文章