sql语句 怎么从一张表中查询数据插入到另一张表中
1个回答
展开全部
以下:
1、
insert into A([id], ids, [name], type, time)
select [id], null, [name], 'dd', getdate() from B where type='dd'
2、
DECLARE @num int,@i int;
SET @i=0;
SET @num=(select 字段 from 表1 where 条件);
WHILE @i<@num
begin
set @i=@i+1;
insert INTO 表2(字段) SELECT 字段 from 表1 where 条件;
end;
3、
insert into b (column1,datecolumn)
select column1,getdate() from a
1、
insert into A([id], ids, [name], type, time)
select [id], null, [name], 'dd', getdate() from B where type='dd'
2、
DECLARE @num int,@i int;
SET @i=0;
SET @num=(select 字段 from 表1 where 条件);
WHILE @i<@num
begin
set @i=@i+1;
insert INTO 表2(字段) SELECT 字段 from 表1 where 条件;
end;
3、
insert into b (column1,datecolumn)
select column1,getdate() from a
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |