Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Improving performance of view
Define a table RANGES as
insert into RANGES values (:A10, :A11);
insert into RANGES values (:A12, :A13);
...
insert into RANGES values (:A34, :A35); insert into RANGES values (:A36, :A36); insert into RANGES values (:A37, :A37);
select ...
from COVP, RANGES
where ...
and KSTAR between LOWER and UPPER;
Give it a try.
Martin Haltmayer Received on Wed Oct 22 1997 - 00:00:00 CDT
![]() |
![]() |