Hello,
I would like to thank you in advance for the help.
I will provide a example of my real situation.If it will not be possible to solve it,i may provide the ddl,plan and so on.
I have a view named view_1.
It is implemented as below,
sel *
from calendar_dim c
inner join
(
sel * from table1
where reference_dt > 11-11-2012
union all
sel * from view2
) as result_
on result_.date_clm = c.date_clm
;
**
↧