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
  1. DECLARE @StartNumber INT = 1000
  2.  
  3. INSERT INTO Table2 SELECT (ROW_NUMBER() OVER(ORDER BY [FIELD] DESC)) + @StartNumber AS id, * FROM Table1

以上是关于T-SQL表中Insert的自动递增Id的主要内容,如果未能解决你的问题,请参考以下文章

php mysql_insert_id 在多行上?

从表中删除后自动递增[重复]

从表中删除后自动递增[重复]

如何获取最后插入的自动递增 id 并将其插入 laravel 中的另一个表中?

使用自动递增的 ID 作为值的一部分将条目插入到其表中

在 INSERT 之后获取 LAST_INSERT_ID() 并在以下查询中使用它