From: | Melvin Davidson <melvin6925(at)gmail(dot)com> |
---|---|
To: | Ken Tanzer <ken(dot)tanzer(at)gmail(dot)com> |
Cc: | "Peter J(dot) Holzer" <hjp-pgsql(at)hjp(dot)at>, pgsql-general(at)lists(dot)postgresql(dot)org |
Subject: | Re: Array of foreign key |
Date: | 2017-12-23 18:14:50 |
Message-ID: | CANu8Fiy6aoqvVzMCr3VW=Fd-aoEeqxxumrhM5jGJair1gpWqSw@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On Sat, Dec 23, 2017 at 12:49 PM, Ken Tanzer <ken(dot)tanzer(at)gmail(dot)com> wrote:
>
>> I don't think you understand how Foreign Key constraints work in
>> PostgreSQL.
>> PostgreSQL will prevent any insert where the value of a column is not
>> within the FK table.
>> So you DO NOT need a check constraint or trigger.
>>
>>
> I thought the OP was asking for this feature ("Support for Array ELEMENT
> Foreign Keys"):
>
> https://www.postgresql.org/message-id/flat/1343842863.
> 5162(dot)4(dot)camel(at)greygoo(dot)devise-it(dot)lan#1343842863(dot)5162(dot)4(dot)
> camel(at)greygoo(dot)devise-it(dot)lan
>
> which would be super-handy, but doesn't actually exist. You can enforce
> it yourself with a trigger on both tables, but I still hope this someday
> gets included into Postgres!
>
> Ken
>
>
Actually, I think the op may be referring to a MULTI COLUMN FK array
EG:
DROP TABLE drivers
CREATE TABLE drivers (
driver_id integer PRIMARY KEY,
driver_first_name text,
driver_last_name text,
CONSTRAINT drivers_uq UNIQUE (driver_first_name, driver_last_name)
);
CREATE TABLE races (
race_id integer PRIMARY KEY,
title text,
race_day DATE,
driver_first_name text,
driver_last_name text,
final_positions integer,
CONSTRAINT races_driver_fk FOREIGN KEY (driver_first_name,
driver_last_name)
REFERENCES drivers (driver_first_name, driver_last_name)
);
and that is available,
which is why I requested clarification.
So I guess we will have to wait for the op's response.
--
*Melvin Davidson*
I reserve the right to fantasize. Whether or not you
wish to share my fantasy is entirely up to you.
From | Date | Subject | |
---|---|---|---|
Next Message | Timo Myyrä | 2017-12-23 18:53:15 | Migrating to postgresql from oracle |
Previous Message | Jeremy Finzel | 2017-12-23 18:13:20 | Re: Deadlock between concurrent index builds on different tables |