これを行う1つの方法があります。日付はすべて純粋な日付であると想定しています(時刻コンポーネントはありません-実際、時刻はどこでも00:00:00であることを意味します)。また、出力に最初の日付から最後の日付までのすべての日付を入力に含めることを前提としています。
最初と最後の日付は、最も内側のクエリで計算されます。次に、それらの間のすべての日付が階層(接続)クエリで作成され、結果は元のデータに左結合されます。次に、分析的なlast_value()
を使用して出力を取得します。 ignore nulls
で機能する オプション。
with
inputs ( dt, value ) as (
select to_date('8/1/2017', 'mm/dd/yyyy'), 'x' from dual union all
select to_date('8/5/2017', 'mm/dd/yyyy'), 'b' from dual union all
select to_date('8/7/2017', 'mm/dd/yyyy'), 'a' from dual
)
-- End of simulated input data (for testing purposes only, not part of the solution).
-- Use your actual table and column names in the SQL query that begins below this line.
select dt, last_value(value ignore nulls) over (order by dt) as value
from ( select f.dt, i.value
from ( select min_dt + level - 1 as dt
from ( select max(dt) as max_dt, min(dt) as min_dt
from inputs
)
connect by level <= max_dt - min_dt + 1
) f
left outer join inputs i on f.dt = i.dt
)
;
DT VALUE
---------- -----
2017-08-01 x
2017-08-02 x
2017-08-03 x
2017-08-04 x
2017-08-05 b
2017-08-06 b
2017-08-07 a