2014年1月11日 星期六

[SQL] 新增整批insert...select

--insert select 進行整批新增
use practice
go

--建立範例資料表od04
create table od04(
oid int,
oname varchar(100),
odate datetime
)
go

--將select子查詢的結果整批的新增到od04資料表中
insert od04(oid, oname, odate)
select * from od03

--將北風資料的資料匯到od04
insert od04(oid, oname, odate)
select ProductID, ProductName, getdate()
from Northwind.dbo.Products

--檢視資料
select  * from od04
order by oid

沒有留言:

張貼留言