如何把SQL SERVER中一个数据库表导入到另一个数据库表?
数据库A和数据库B,数据库A中有表A1,字段有aa,bb,cc,数据库B中有表B1,字段有dd,ee,ff,如何把表B1导入A1??...
数据库A和数据库B,数据库A中有表A1,字段有aa,bb,cc,数据库B中有表B1,字段有dd,ee,ff,如何把表B1导入A1??
展开
3个回答
展开全部
http://www.xygz.net/web.files/guanlijigou/zhongxin/software/PERSONALSQLPRO.rar
use 你要用的数据库
go
if exists(select name from sysobjects where type='u' id=object_id('表名'))
drop table 表名
go
use 源库
go
select * into 目的库.dbo.表名 from 表名
go
use 你要用的数据库
go
if exists(select name from sysobjects where type='u' id=object_id('表名'))
drop table 表名
go
use 源库
go
select * into 目的库.dbo.表名 from 表名
go
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
use 目的库
go
if exists(select name from sysobjects where type='u' id=object_id('表名'))
drop table 表名
go
use 源库
go
select * into 目的库.dbo.表名 from 表名
go
go
if exists(select name from sysobjects where type='u' id=object_id('表名'))
drop table 表名
go
use 源库
go
select * into 目的库.dbo.表名 from 表名
go
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询