如何以最简单的方式将一些行从一个表传输到另一个表?这是一次性的事情。我希望我可以在Server Explorer中使用VS2010复制和粘贴功能,但它不允许我粘贴行。
答案 0 :(得分:3)
由于表模式相同,您可以使用Sql Server Management Studio而不是VS2010来复制和粘贴
您还可以使用SSMS
使用T-SQL语句Insert Into dbo.TableB (ColumnA, ColumnB, ColumnC ...)
Select ColumnA, ColumnB, ColumnC ...
From dbo.TableA
答案 1 :(得分:0)
select * into <destination table> from <source table>
Example:
select * into employee_backup from employee
您可以添加WHERE子句并根据需要指定列。
根据http://cavemansblog.wordpress.com/2009/06/09/sql-server-how-to-copy-a-table/