我们可以复制数据库表吗

问题描述:

我想将表从sql server 2005数据库复制到sql server 2000数据库.
只有填充的表应该被复制到该数据库.我需要您的帮助

i want to copy a table from sql server 2005 database to sql server 2000 database.
only the filled table should be copied to that database. I need ur help

以下SQL代码使用从其他表复制的数据创建本地表.祝你好运!

The following SQL code create a local table with data copied from the other table. Good luck!

SELECT * INTO localtable
FROM otherdatabase.dbo.othertable