这在Mssql中完美运行。
如何在Oracle中重写:
create table #temptable (mgr bigint)
insert into #temptable (mgr) (
select 1
union select 2
union select 3)
答案 0 :(得分:0)
您可以创建一个这样的临时表:
create global temporary table temptable (mgr number);
要在此表中插入数据:
insert into temptable
select 1 from dual union all
select 2 from dual union all
select 3 from dual;