1   with p as
  2   (select id,name from test where id=1),
  3   p2 as (select id ,name from test where id=2),
  4   p3 as
  5   (select * from p2
  6   union all
  7   select *from p)
  8*   insert into test2 as select id,name from p3
SQL> /
  insert into test2 as select id,name from p3
  *
第 8 行出现错误:
ORA-00928: 缺失 SELECT 关键字