PostgreSQL
 sql >> Teknologi Basis Data >  >> RDS >> PostgreSQL

Buat tabel ketiga dari dua tabel

Kiri gabungkan hasilnya dengan table2 seperti ini:

select t2."Source", to_char(coalesce(t1."The Ratio",0),'990%') "The Ratio"
from table2 t2 left outer join
  (select "Source", 100 * count(*) / sum(count(*)) over ()  "The Ratio"
   from TableA 
   group by "Source") t1
on t1."Source" = t2."Source";


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Mengekstrak dan Rata-rata nilai instintanous dalam DB temporal di postgresql

  2. Bagaimana saya bisa mengubah Nama Database di AWS RDS untuk Postgresql?

  3. Query K-Nearest Neighbor di PostGIS

  4. Evolusi Fault Tolerance di PostgreSQL:Synchronous Commit

  5. PostgreSQL - mengulangi baris dari LIMIT OFFSET