Skip site navigation (1) Skip section navigation (2)

Peripheral Links

Header And Logo

PostgreSQL
| The world's most advanced open source database.

Site Navigation

Search for
  Advanced Search

Re: How to have a unique primary key on two tables



am  Thu, dem 22.11.2007, um 12:01:59 +0100 mailte Daniel bodom_lx Graziotin folgendes:
> Hi everybody,
> I need to have a primary key which has to be unique on two tables.
> E.g.:
> 
> CREATE TABLE first
> (
>   id serial NOT NULL,
>   testo text,
> )
> 
> CREATE TABLE second
> (
>   id serial NOT NULL,
>   testo text,
> )
> 
> When I insert some text on "first", I would like first.id = second.id
> + 1, and vice versa.
> A sort of primary key in common for both tables.
> 
> Any hints?

Yes. Create a SEQUENCE and use nextval(sequence) as primary key on both
tables.


Andreas
-- 
Andreas Kretschmer
Kontakt:  Heynitz: 035242/47150,   D1: 0160/7141639 (mehr: -> Header)
GnuPG-ID:   0x3FFF606C, privat 0x7F4584DA   http://wwwkeys.de.pgp.net



Home | Main Index | Thread Index

Privacy Policy | PostgreSQL Archives hosted by Command Prompt, Inc. | Designed by tinysofa
Copyright © 1996 – 2008 PostgreSQL Global Development Group