2

我有个疑问。我需要 SQL SERVER 的语法——如何将数据从一个表插入到另一个表?

4

2 回答 2

7

使用INSERT INTO..SELECT声明

INSERT INTO table2 (col1,...)
SELECT col1,...
FROM table1
于 2012-11-19T05:58:29.863 回答
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.

于 2015-02-24T06:59:15.310 回答