我想将表的主键值插入SQL Server中另一个表中的外键。
请帮帮我..
答案 0 :(得分:6)
Insert Into FKTable (FKValue)
Select PKValue
From PKTable
答案 1 :(得分:0)
以下是一个例子:
INSERT california_authors (au_id, au_lname, au_fname)
SELECT au_id, au_lname, au_fname
FROM authors
WHERE State = 'CA'
答案 2 :(得分:-1)
SELECT PrimaryKey INTO NewTable 来自OldTable