1. 程式人生 > >兩個資料庫表中合併資料

兩個資料庫表中合併資料

--忽略表之間的關聯關係
ALTER TABLE db2.dbo.table NOCHECK CONSTRAINT 關係名

--將沒有重複的資料合併
insert into db2.dbo.table(field1,field2...) select field1,field2... from db1.dbo.table a where a.username not in (select username from db2.dbo.table)

--將重複的資料寫入臨時表
select field1,field2... into 新的臨時表 from db1.dbo.table a where a.username in (select username from db2.dbo.table)