From: | Andrzej Mazurkiewicz <andrzej(dot)mazurkiewicz(at)polkomtel(dot)com(dot)pl> |
---|---|
To: | "'Ron Peterson'" <rpeterson(at)yellowbank(dot)com>, pgsql-general(at)postgreSQL(dot)org |
Subject: | RE: [GENERAL] FOREIGN KEY syntax |
Date: | 2000-03-03 11:54:31 |
Message-ID: | 13288F4408ADD11186FF0060B06A431303648C8F@MSGWAW1 |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
The following information is based on gram.y file of postgres sources
FOREIGN KEY ( columnList ) REFERENCES tableName [ ( columnList) ] [MATCH
FULL] [ON DELETE action] [ON UPDATE action]
[[NOT] DEFERRABLE] [INITIALLLY {IMMEDIATE | DEFERRED}] (not all matches are
allowed)
"action" is {NO ACTION | RESTRICT | CASCADE | SET NULL_P | SET DEFAULT }
[ .. ] means optional elements
{ .. | .. | ..} means exactly one of
Regards,
Andrzej Mazurkiewicz
andrzej(at)mazurkiewicz(dot)org
> -----Original Message-----
> From: Ron Peterson [SMTP:rpeterson(at)yellowbank(dot)com]
> Sent: 2 marca 2000 20:19
> To: pgsql-general(at)postgreSQL(dot)org
> Subject: [GENERAL] FOREIGN KEY syntax
>
>
> I've downloaded and installed the 7.0 beta. Works great so far!
>
> I noticed on the change list that foreign key support has been added.
> However, information about the use of this feature hasn't made it into
> the documentation yet. Can anyone give me some examples of how to use
> FOREIGN KEY in postgresql?
>
> Ron Peterson
> rpeterson(at)yellowbank(dot)com
>
> ************
From | Date | Subject | |
---|---|---|---|
Next Message | Patrik Hall | 2000-03-03 13:09:06 | Median, Quartile and Percentile Aggregate Functions |
Previous Message | Chris Carbaugh | 2000-03-03 04:34:00 | Help with installing 6.5.3 on RedHat6.1 - specifying template |