public inbox for [email protected]
help / color / mirror / Atom feedFrom: [email protected]
To: Pgsql Novice <[email protected]>
Subject: How to use a cross column exclude constraint
Date: Sun, 21 Aug 2022 21:45:17 +0200 (CEST)
Message-ID: <[email protected]> (raw)
Hi All,
Schema:
CREATE TABLE record ( id uuid primary key default ..., ...);CREATE TABLE record_pointer ( id uuid primary key default ..., record_a_id uuid not null references record (id), record_b_id uuid not null references record (id), ...);
I am trying to create an exclude constraint to make both record_a_id and record_b_id unique table wide, so that each row from "record" can ever be referenced once in "record_pointers".
Eg. if I add a record_pointer row that has "this-is-random-uuid" as record_a_id, the value "this-is-random-uuid" can never be in record_a_id or record_b_id in any other row.
Thank you in advance!
view thread (7+ messages) latest in thread
reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Reply to all the recipients using the --to and --cc options:
reply via email
To: [email protected]
Cc: [email protected], [email protected]
Subject: Re: How to use a cross column exclude constraint
In-Reply-To: <[email protected]>
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox