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

如题所述

insert into 表1(字段1,字段2) select 值1,值2 from 表2

这种方式可以将另一表中的多条数据插入当前表

温馨提示:内容为网友见解,仅供参考
第1个回答  2015-02-11
insert into a select * from b
第2个回答  2015-02-11
用左右内连接不行吗?或者All join~
相似回答