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

Dołącz do 2 tabel, w których dwa zestawy liczb nakładają się w łączących się kolumnach

Chodzi o to, aby najpierw zrobić listę unikalnych dat z obu tabel. Następnie dla każdej takiej daty znajdź następną datę (w tym konkretnym przypadku daty są grupowane według stanu, powiatu, a następna data szukana jest dla konkretnego stanu, powiatu).
Więc mamy teraz listę zakresów, których szukamy. Teraz możemy dołączyć (dla tego konkretnego zadania left join) inne stoły po spełnieniu wymaganych warunków:

select
    r.state,
    c.start_cong,
    c.end_cong,
    c.party,
    coalesce(c.district, d.district) district,
    d.start_dist,
    d.end_dist,
    start_comb,
    end_comb,
    case when d.district is not null then start_comb end final_start,
    case when d.district is not null then end_comb end final_end
from (
    with dates as (
        select
            *
        from (
            SELECT 
                c.state,
                c.district,
                start_cong date
            FROM congressperson c
            union 
            SELECT
                c.state,
                c.district, 
                end_cong
            FROM congressperson c
            union 
            SELECT 
                d.state,
                d.district,
                start_dist
            FROM district d 
            union 
            SELECT
                d.state,
                d.district, 
                end_dist
            FROM district d 
        ) DATES
        group by 
            state,
            district,
            date
        order by 
            state,
            district,    
            date
    ) 
    select
        dates.state,
        dates.district,
        dates.date start_comb,
    (select 
        d.date 
    from 
        dates d
    where
        d.state = dates.state and
        d.district = dates.district and
        d.date > dates.date
    order by 
        d.date
    limit 1
    ) end_comb
    from 
        dates) r
left join congressperson c on 
                            c.state = r.state and
                            c.district = r.district and
                            start_comb between c.start_cong and c.end_cong and 
                            end_comb between c.start_cong and c.end_cong
left join district d on 
                        d.state = r.state and
                        d.district = r.district and
                        start_comb between d.start_dist and d.end_dist and 
                        end_comb between d.start_dist and d.end_dist
where
    end_comb is not null 
order by 
    r.state, coalesce(c.district, d.district), start_comb, end_comb, start_cong, end_cong



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Postgresql ORDER BY spacje

  2. Klauzule WHERE i JOIN nakazują wykonanie

  3. Kompilowanie zapisywalnego rozszerzenia mongo_fdw w formacie binarnym instalacji PostgreSQL.

  4. Doctrine2 nie ustawia sekwencji jako domyślnej dla kolumny id (postgres)

  5. PostgreSQL 9.6:równoległe skanowanie sekwencyjne