sql语句 怎么从一张表中查询数据插入到另一张表中

2024-11-02 12:21:49
推荐回答(4个)
回答(1):

如果两表字段相同,则可以直接这样用。
insert into table_a select * from table_b
如果两表字段不同,a表需要b中的某几个字段即可,则可以如下使用:
insert into table_a(field_a1,field_a2,field_a3) select field_b1,field_b2,field_b3 from table_b
还可以加上where条件

回答(2):

insert into 表A select a,b,c from 表B ;
其中查询字段abc需要与表A中的字段对应。如果不是全表,也可以:
insert into 表A (a,b,c) select a',b',c' from 表B ;

回答(3):

insert into table1(id,name) select id,name from table2

回答(4):

insert into table1
select * from table2

--如果table1表不存在
select * into table1 from table2