sql >> Databasteknik >  >> RDS >> PostgreSQL

Migrera en Oracle MERGE-sats till en PostgreSQL UPSERT-sats

Jag tror inte att det finns UPSERT-sats i PostgreSQL 9.3, men du kan göra så här:

with cte_dual as (
    select
        v_c1 as key,
        v_c2 as pkey,
        v_c3 as wcount,
        v_c4 as dcount
), cte_update as (
    update my_table as a set
        wcount = b.wcount,
        dcount = b.dcount
    from cte_dual as b
    where b.key = a.key and b.pkey = a.pkey
    returning *
)
insert into my_table (key, pkey, wcount, dcount)
select d.key, d.pkey, d.wcount, d.dcount
from cte_dual as d
where not exists (select * from cte_update as u WHERE u.key = d.key and u.pkey = d.pkey)

Du kan läsa några liknande frågor:



  1. Mysql Generera varje datum från datumintervalllistan

  2. Hur uppgraderar jag PostgreSQL med PostGIS?

  3. Hur ansluter man oracle Cloud Instance med Oracle Cloud Shell?

  4. Mysql Gå med OCH SUMMA