Re: two primairy key in one table ? - Mailing list pgsql-general

From Josh Jore
Subject Re: two primairy key in one table ?
Date
Msg-id Pine.BSO.4.44.0207051012440.812-100000@kitten.greentechnologist.org
Whole thread Raw
In response to two primairy key in one table ?  (Angela Luyf <a.c.luyf@amc.uva.nl>)
List pgsql-general
Oh sure, that's easy. Make the primary key be a table constraint instead
of just a single column.

CREATE TABLE foo (
    a int,
    b int,
    PRIMARY KEY (a,b)
);

Joshua b. Jore ; http://www.greentechnologist.org

On Thu, 4 Jul 2002, Angela Luyf wrote:

> Hello,
> I have a database model where a many to many relation is used, so i need
> to create a table with two primary key. Don't know how to solve this in
> postgress, can't find it in the tutorials, so can anybody help me with
> this ?
>
> A. Luyf
>
>
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please send an appropriate
> subscribe-nomail command to majordomo@postgresql.org so that your
> message can get through to the mailing list cleanly
>
>
>




pgsql-general by date:

Previous
From: Ricardo Junior
Date:
Subject: Re: Indexes not working, please help.
Next
From: Thomas Lockhart
Date:
Subject: Re: explicit cast error