drop table t2;
create table t2 as select * from emp;
insert into t2 select * from t2;
insert into t2 select * from t2;
commit;
select a.empno, a.ename, a.deptno, a.sal
from ( select t2.*,
row_number() over( PARTITION BY em ...
↧