摘要: use 目的库go----删除原表if exists(select name from sysobjects where type='u' and id=object_id('表名')) drop table 表名 go use 源库go select * into 目的库.dbo.表名 from 表名 go ---从源表插入到目的表,A源库a表,B目的库b表.---实现把a表的D字段内容... 阅读全文
posted @ 2009-05-30 15:19 夜半松风 阅读(249) 评论(0) 推荐(0)