PostgreSQL
 sql >> Baza danych >  >> RDS >> PostgreSQL

PostgreSQL:wypełnij wartości NULL w zapytaniu timeerie poprzednią wartością

Uznałem, że łatwiejsza jest następująca metoda:

Utwórz podaną próbkę danych:

WITH example (date,close) AS 
(VALUES 
    ('12:00:00',3),
    ('12:00:01',4),
    ('12:00:02',5),
    ('12:00:03',NULL),
    ('12:00:04',NULL), 
    ('12:00:05',3)
) 
SELECT * INTO temporary table market_summary FROM example;

Zapytanie o wypełnienie wartości NULL poprzednią wypełnioną wartością

select 
    date, 
    close, 
    first_value(close) over (partition by grp_close) as corrected_close
from (
      select date, close,
             sum(case when close is not null then 1 end) over (order by date) as grp_close
      from   market_summary
) t

Powrót

date      | close | corrected_close
-----------------------------------
12:00:00  | 3     | 3
12:01:00  | 4     | 4
12:02:00  | 5     | 5
12:03:00  | NULL  | 5
12:04:00  | NULL  | 5
12:05:00  | 3     | 3
  • zamknij:istniejąca wartość
  • corrected_close:poprawiona wartość


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Typ danych JDBC, Elasticsearch i Postgresql Json

  2. Docker Compose + Spring Boot + połączenie Postgres

  3. Klucz podstawowy z porządkowaniem ASC lub DESC?

  4. Mam inne wyniki niż zapytanie o COUNT('e.id') lub COUNT(e.id)

  5. Jak monitorować wydajność PostgreSQL 12 za pomocą OmniDB — część 2