Oracle 11g
Oracle SQL Developer 3.0.03
我需要将具有 +100K 行的生产表中的所有数据复制到开发表中。这些表有两种不同的模式。
我开始做:
select *
from prod_schema.prod_table
where ronum <= 50000 order by ID asc
然后做
select *
from prod_schema.prod_table
where ronum >= 50001
and rownum <=107161 order by ID asc
但是第二个查询没有提取任何数据。
有任何想法吗?