在相同的表模式之间复制行的简便方法[Visual Studio 2010]

时间:2011-01-17 13:13:13

标签: sql-server visual-studio-2010

如何以最简单的方式将一些行从一个表传输到另一个表?这是一次性的事情。我希望我可以在Server Explorer中使用VS2010复制和粘贴功能,但它不允许我粘贴行。

2 个答案:

答案 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/