将自动生成的ID作为外键插入另一个表

将自动生成的ID作为外键插入另一个表

本文介绍了将自动生成的ID作为外键插入另一个表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我如何从SQL Server插入生成ID作为另一个表的外键.发生此错误``当IDENTITY_INSERT设置为OFF时,无法为表''Kursus''中的身份列插入显式值.''

我该如何解决这个问题.谢谢

how can i insert generate id from SQL server as foreign key to another table. This error has occur ''Cannot insert explicit value for identity column in table ''Kursus'' when IDENTITY_INSERT is set to OFF.''

How i can solve this problem. Thank You

推荐答案

INSERT INTO INTO TableName (Name) VALUES (''Some name'');


插入后,您可以使用 SCOPE_IDENTITY [ ^ ]来获取插入的ID的值,因此您可以将其用于外键子表中还有其他一些插入.


After the insert you can use SCOPE_IDENTITY[^] to get the value of the inserted Id so you can use the value for a foreign key in some other insert into a child table.



这篇关于将自动生成的ID作为外键插入另一个表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-26 10:06