I have two columns table: Id, and value.
select id, last_value(value IGNORE NULLS) over (order by id) as modified_value from your_table ;
1.4m articles
1.4m replys
5 comments
57.0k users