1. 程式人生 > >淺談sql server把一個表中查詢出來的資料插入到另外一個表中

淺談sql server把一個表中查詢出來的資料插入到另外一個表中

1、

insertintoA([id], ids,[name], type, time)

select[id],null,[name],'dd',getdate()fromBwheretype='dd'

2、

DECLARE @num int,@i int;
SET @i=0;
SET @num=(select 欄位 from 表1 where 條件);
WHILE @i<@num
begin
set @[email protected]+1;
insert INTO 表2(欄位) SELECT 欄位 from 表1 where 條件;
end;

3、

insert into b (column1,datecolumn)
select column1,getdate() from a