Re: REFERENCES troubles

From: "Robert B(dot) Easter" <reaster(at)comptechnews(dot)com>
To: "planx plnetx" <planetx2100(at)hotmail(dot)com>, pgsql-general(at)postgresql(dot)org
Subject: Re: REFERENCES troubles
Date: 2000-07-04 22:38:28
Message-ID: 00070418482603.01354@comptechnews
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Tue, 04 Jul 2000, planx plnetx wrote:
> I get this error when creating a database:
>
> CREATE TABLE workers(
> name varchar(30),
> firstname varchar(30),
> id_personal decimal(10)NOT NULL UNIQUE PRIMARY KEY,
> );
>
> CREATE TABLE payements(
> date_of date,
> owner REFERENCES workers(id_personal)
> );
>
>
> IT gimme error!!!
> why this isn't right?
> the postgres documentation seem say to do in this manner...

You could try something like this instead:

CREATE TABLE workers(
id_personal SERIAL PRIMARY KEY,
name VARCHAR(30),
firstname VARCHAR(30)
);
CREATE TABLE payements(
date_of DATE,
owner REFERENCES workers
);

PRIMARY KEY implies UNIQUE NOT NULL
SERIAL will be an INTEGER DEFAULT nextval('workers_id_personal_seq') so they
get a number automatically.

> ________________________________________________________________________
> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
--
Robert

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Sevo Stille 2000-07-04 23:00:46 Re: responses to licensing discussion
Previous Message Randall Parker 2000-07-04 22:02:17 Anyone using ReiserFS in production work? (or advise against it?)