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

Scal tabele z PostgreSQL

prawdopodobnie wyglądasz dla FULL OUTER JOIN

SELECT
  coalesce(a.code,b.code),
  coalesce(a."year",b.year),
  coalesce(a.nb_a,0),
  coalesce(b.nb_b,0),
  coalesce(a.nb_a,0) + coalesce(b.nb_b,0) AS total
FROM table_a a full outer join table_b b on a.code = b.code and a.year = b.year;
 coalesce | coalesce | coalesce | coalesce | total
----------+----------+----------+----------+-------
        1 |     2013 |        0 |        1 |     1
        1 |     2014 |        0 |        1 |     1
        1 |     2017 |        1 |        0 |     1
        2 |     2012 |        2 |        1 |     3
        3 |     2014 |        2 |        0 |     2
(5 rows)



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Funkcja Postgres do wstawiania wielu rekordów w dwóch tabelach

  2. przechowuj wynik postgresql w zmiennej bash

  3. Utwórz tabelę dwóch typów w PostgreSQL

  4. Co oznacza epoch w txid_current() w postgresql?

  5. PostgreSQL:Tymczasowo wyłącz połączenia