Re: Primary and Foreign Key?

From: "Russell Simpkins" <russellsimpkins(at)hotmail(dot)com>
To: truthhurts(at)insightbb(dot)com, pgsql-sql(at)postgresql(dot)org
Subject: Re: Primary and Foreign Key?
Date: 2005-09-23 01:34:11
Message-ID: BAY103-F327D058A39D6C120B832E0B5960@phx.gbl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


This is valid ddl to accomplish what you wish.

create table peoplegroups {
peopleid int not null,
groupid int not null,
primary key (peopleid, groupid),
foreign key (peopleid) references people,
foreign key (groupid) references group
}

Check the docs for other options etc.

>From: "Announce" <truthhurts(at)insightbb(dot)com>
>To: "PostgreSQL SQL List" <pgsql-sql(at)postgresql(dot)org>
>Subject: [SQL] Primary and Foreign Key?
>Date: Thu, 22 Sep 2005 20:13:35 -0500
>
>I have the following related tables:
>
>PEOPLE
>--------------
>peopleid pkey,
>name,
>etc
>
>
>GROUPS
>-------------
>groupid pkey,
>description,
>etc
>
>
>PEOPLEGROUPS
>-------------------
>peopleid pkey/fkey,
>groupid pkey/fkey
>
>
>What is the CORRECT way (in Postgres) to define the PEOPLEGROUPS table so
>that it has both the double primary key AND still acts as a foreign key for
>people.peopleid and groups.groupid? Can i specify both or is this not
>necessary? Any suggestions would be appreciated.
>
>Thanks!
>
>--
>No virus found in this outgoing message.
>Checked by AVG Anti-Virus.
>Version: 7.0.344 / Virus Database: 267.11.4/109 - Release Date: 9/21/2005
>
>
>---------------------------(end of broadcast)---------------------------
>TIP 3: Have you checked our extensive FAQ?
>
> http://www.postgresql.org/docs/faq

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Stewart Ben (RBAU/EQS4) * 2005-09-23 01:50:49 Functions, transactions and RETURN
Previous Message Announce 2005-09-23 01:13:35 Primary and Foreign Key?