Du har brug for et delvist indeks. Slip en unik begrænsning i kolonnen name og opret et delvist indeks på kolonnen:
CREATE TABLE customers (
customer_id serial PRIMARY KEY,
name VARCHAR,
email VARCHAR NOT NULL,
active bool NOT NULL DEFAULT TRUE
);
CREATE UNIQUE INDEX ON customers (name) WHERE active;
INSERT INTO customers (NAME, email) VALUES
('IBM', 'example@sqldat.com'),
('Microsoft', 'example@sqldat.com'),
('Intel','example@sqldat.com');
Forespørgslen skal se sådan ud:
INSERT INTO customers (name, email)
VALUES
('Microsoft', 'example@sqldat.com')
ON CONFLICT (name) WHERE active
DO UPDATE SET email = excluded.email;
SELECT *
FROM customers;
customer_id | name | email | active
-------------+-----------+-----------------------+--------
1 | IBM | example@sqldat.com | t
3 | Intel | example@sqldat.com | t
2 | Microsoft | example@sqldat.com | t
(3 rows)
Bemærk den korrekte brug af den særlige post excluded. Ifølge dokumentationen: