我想將Variables
中的行復制到SQL Server中的VariablesTest
。這兩個具有相同的列,數據類型,等等。通過下面的答案閱讀,我想像這是去將行從一個表複製到另一個具有相同結構的行
set IDENTITY_INSERT VariablesTest ON
insert VariablesTest Select * from Variables
set IDENTITY_INSERT VariablesTest OFF
但SQL Server Management Studio中拋出一個錯誤的方式:
An explicit value for the identity column in table 'VariablesTest' can only be specified when a column list is used and IDENTITY_INSERT is ON.
唉...
答案出現在你的錯誤信息中......當使用列列表時。 – MatBailie