create table tab1 (t1_id varchar2(12) constraint pk_tab1 primary key)
Table created.
create table tab2 (t2_id varchar2(12) constraint pk_tab2 primary key)
Table created.
create table tab3 (t3_id char(12))
Table created.
create index idx_tab3_t3_id on tab3(t3_id)
Index created.
insert into tab1(t1_id) select to_char(level,'fmRM') from dual connect by level < 1000
999 row(s) inserted.
insert into tab2(t2_id) select to_char(level+100,'fmRM') from dual connect by level < 1000
999 row(s) inserted.
insert into tab3(t3_id) select to_char(nullif(mod(level,777),0),'fmRM') from dual connect by level <20000
19999 row(s) inserted.
commit
Statement processed.
create or replace view v1 as
select t3_id id,count(t3_id) cnt from tab3 group by t3_id having count(t3_id) > 0
View created.
create or replace view v2 as
select tab2.t2_id id, nvl(v1.cnt,0) cnt from tab2, v1
where tab2.t2_id = v1.id (+)
View created.
create or replace view v3 as
select tab1.t1_id id, v2.cnt from tab1, v2 where tab1.t1_id = v2.id and v2.cnt > 0
View created.
select * from v3
no data found
select * from v3 where id = 'CLII'
ID | CNT |
---|---|
CLII | 26 |
select * from v3 where id like 'CLI%'
no data found
drop table tab1 purge
Table dropped.
drop table tab2 purge
Table dropped.
drop table tab3 purge
Table dropped.
drop view v1
View dropped.
drop view v2
View dropped.
drop view v3
View dropped.