1. 程式人生 > >sql 資料庫表資料轉移

sql 資料庫表資料轉移

一、如果另一個庫中沒有同名的表

select * 
into b資料庫.dbo.a表 
from a資料庫.dbo.a表 
where 條件

 

二、如果是追加到另一個表中

inert into [b資料庫].dbo.a表(欄位)
select * 
from [a資料庫].dbo.a表 
where 條件

例子:把【本庫表A 】比 【庫B表A】 多的資料填充到 【庫B表A】

insert into [Data001].dbo.Period
select a.*
from Mall_Period a
left join [Data001].dbo.Period b on
a.ID = b.ID where b.ID is null