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

POSTGRESQL INSERT, hvis det specifikke rækkenavn ikke findes?

ON DUPLICATE KEY UPDATE er MySQL-syntaks, ikke PostgreSQL. PostgreSQL har ikke en simpel SQL-syntaks til at gøre, hvad du vil.

Men dokumentationen inkluderer eksempelkode for en funktion, der gør det.

CREATE TABLE db (a INT PRIMARY KEY, b TEXT);

CREATE FUNCTION merge_db(key INT, data TEXT) RETURNS VOID AS
$$
BEGIN
    LOOP
        -- first try to update the key
        UPDATE db SET b = data WHERE a = key;
        IF found THEN
            RETURN;
        END IF;
        -- not there, so try to insert the key
        -- if someone else inserts the same key concurrently,
        -- we could get a unique-key failure
        BEGIN
            INSERT INTO db(a,b) VALUES (key, data);
            RETURN;
        EXCEPTION WHEN unique_violation THEN
            -- do nothing, and loop to try the UPDATE again
        END;
    END LOOP;
END;
$$
LANGUAGE plpgsql;


  1. Blanding af ANSI 1992 JOINs og COMMAs i en forespørgsel

  2. Hvordan Atand() virker i PostgreSQL

  3. Mysqli join tabeller fra 2 forskellige databaser

  4. Brug af Count til at finde antallet af forekomster