日期:2014-05-16  浏览次数:20353 次

将一个表的查询结果插入到另一个表中

?

如果表存在:
insert into tab1 select * from tab2;
如果表不存在:
create table tab1 as select * from tab2;

?

?