sql >> Database teknologi >  >> RDS >> PostgreSQL

Opret en tredje tabel fra to tabeller

Venstre sammenføj resultatet med tabel2 sådan her:

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. Mysql:Opdater tabel med antal fra samme tabel

  2. Opret indlejret json fra sql-forespørgsel postgres 9.4

  3. SQL SERVER – SQL_NO_CACHE og OPTION (GENKOMPILER)

  4. Indstil en standard LIMIT i PDO/MySQL, når ingen LIMIT er indstillet