Re: Add Foreign Keys To Table - Mailing list pgsql-general

From Rich Shepard
Subject Re: Add Foreign Keys To Table
Date
Msg-id alpine.LNX.2.00.1107071304590.20399@salmo.appl-ecosys.com
Whole thread Raw
In response to Re: Add Foreign Keys To Table  (John R Pierce <pierce@hogranch.com>)
List pgsql-general
On Thu, 7 Jul 2011, John R Pierce wrote:

> Since your PK of station_type is a composite, your foreign key must also be
> composite.
>
> CREATE TABLE stuffed (
>    id serial;
>    otherestuffs text;
>    sta varchar(50),
>    sec varchar(50),
>    FOREIGN KEY (sta, sec) REFERENCES station_type(sta_type, secondary_type)
> );

   Thanks, John, for showing me how to apply this approach.

Rich

pgsql-general by date:

Previous
From: Dave Coventry
Date:
Subject: Re: Insufficient privileges.
Next
From: John R Pierce
Date:
Subject: Re: Add Foreign Keys To Table