Stupid foreign key question

Поиск
Список
Период
Сортировка
От elwood@agouros.de (Konstantinos Agouros)
Тема Stupid foreign key question
Дата
Msg-id elwood.998748473@news.agouros.de
обсуждение исходный текст
Список pgsql-general
Hi,

I am trying to create a database with some cross references. From readings the
doku I am quite sure I didn't understand the use of foreign key/references.

I wrote it the following way:
CREATE TABLE "ccs" (
        "name" character varying(20),
        "id" integer PRIMARY KEY DEFAULT NEXTVAL('serial')
);
 CREATE TABLE "users" (
        "name" character varying(10),
        "id" integer PRIMARY KEY DEFAULT NEXTVAL('serial'),
        "admin" boolean,
        "teamid" integer FOREIGN KEY (id) REFERENCES ccs (id)
);

This does not work and does not look right \:) So how do I do this correctly?

Konstantin
--
Dipl-Inf. Konstantin Agouros aka Elwood Blues. Internet: elwood@agouros.de
Otkerstr. 28, 81547 Muenchen, Germany. Tel +49 89 69370185
----------------------------------------------------------------------------
"Captain, this ship will not survive the forming of the cosmos." B'Elana Torres

В списке pgsql-general по дате отправления:

Предыдущее
От: "Tsukaeru.net Webmaster"
Дата:
Сообщение: Re: Backend message type 0x44 arrived while idle
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Error reporting when hitting shared memory limits -