答案 0 :(得分:6)
使用INSERT INTO..SELECT
声明
INSERT INTO table2 (col1,...)
SELECT col1,...
FROM table1
答案 1 :(得分:0)
Insert INTO Table1 (UserName) (Select UName From Table2 b Where Table1.EID = b.EID)
但显示消息:
The multi-part identifier "Table1.EID" could not be bound.