sql >> Databasteknik >  >> RDS >> PostgreSQL

POSTGRESQL INSERT om ett specifikt radnamn inte finns?

ON DUPLICATE KEY UPDATE är MySQL-syntax, inte PostgreSQL. PostgreSQL har inte en enkel SQL-syntax för att göra vad du vill.

Men dokumentationen innehåller exempelkod för en funktion som 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. MAKEDATE() Exempel – MySQL

  2. exportera till Excel från en lista med EPPLUS

  3. Hur får man den senaste posten i varje grupp med GROUP BY?

  4. Ändra Django utvecklingsdatabas från standard SQLite till PostgreSQL