Oracle SQL, fill missing value with the closest non-missing
问题 I have a dataset in which I want to fill missing values witht the closest non-missing value. I found two elegant solutions in the answers to this question, but I don't understand why they are not working for me. Table: create table Tab1(data date, V1 number); insert into Tab1 values (date '2000-01-01', 1); insert into Tab1 values (date '2000-02-01', 1); insert into Tab1 values (date '2000-03-01', 1); insert into Tab1 values (date '2000-04-01', 1); insert into Tab1 values (date '2000-05-01',