create table big_table as
select rownum id, a.*
from all_objects a
where 1=0;
insert into big_table
select rownum id, a.*
from all_objects a
connect by level <= 1000000;
.
.
select t1.object_name, t2.object_name
from big_table t1, big_table t2
where t1.id = t2.id
and t1.owner = 'WMSYS'
- 강좌 URL : http://www.gurubee.net/lecture/3548
- 구루비 강좌는 개인의 학습용으로만 사용 할 수 있으며, 다른 웹 페이지에 게재할 경우에는 출처를 꼭 밝혀 주시면 고맙겠습니다.~^^
- 구루비 강좌는 서비스 제공을 위한 목적이나, 학원 홍보, 수익을 얻기 위한 용도로 사용 할 수 없습니다.