从一张表查询结果insert到另外一张表

  • 如果要插入目标表不存在:
select * into 目标表 fromwhere 条件
  • 如果要插入目标表已经存在:
 insert into 目的表 select * fromwhere 条件

你可能感兴趣的:(oracle)