SQL中如何从一张表中插入多条数据到另外一张表中?
请高手给写一下语句
另外,这两张表的数据结构是不是必须一样,不一样,会有什么影响吗?
参考答案:方法一:
select a.b,a.c,a.d
into A
from a
注:表A是执行查询语句的时候建的,不能预先存在
方法二:
insert into A(b,c,d)
select b,c,d from a
请高手给写一下语句
另外,这两张表的数据结构是不是必须一样,不一样,会有什么影响吗?
参考答案:方法一:
select a.b,a.c,a.d
into A
from a
注:表A是执行查询语句的时候建的,不能预先存在
方法二:
insert into A(b,c,d)
select b,c,d from a