Re: re: REFERENCES

Поиск
Список
Период
Сортировка
От Darren Ferguson
Тема Re: re: REFERENCES
Дата
Msg-id Pine.LNX.4.10.10203101105170.7326-100000@thread.crystalballinc.com
обсуждение исходный текст
Ответ на re: REFERENCES  ("ngterry" <ngterry@sinaman.com>)
Список pgsql-general
CREATE TABLE purchase (id int, po int, date date, PRIMARY KEY (id));

CREATE TABLE lcopen (lc numeric, po int, PRIMARY KEY (lc));

CREATE TABLE lcreceive (
   id int,
   lc numeric REFERENCES lcopen(lc),
   purid int REFERENCES purchase(id)
)
;

I think this is what you are asking this will effectively make lc and
purid in lcreceive foreign keys of the other tables

Darren Ferguson

On Sun, 10 Mar 2002, [big5] ngterry wrote:

>
> Hi!
>
> I am just a newbie in postgresql.  What if:
>
> CREATE TABLE purchase (id int, po int, date date, PRIMARY KEY (id));
>
> CREATE TABLE lcopen (lc numeric, po int, PRIMARY KEY (lc));
>
> CREATE TABLE lcreceive (id int, lc numeric REFERENCES lcopen, purid int REFERENCES purchase);
>
> How do I refer the keywords po in table lcopen to table purchase the po keywords?  I am quite confuse, since I have
announceid in table purchase as PRIMARY KEY.  I do not know how to key another keywords. 
>
> Best regards,
>
> Terence
> ==================================================================
> �s��SMS�u�T�Ghttp://sms.sina.com.hk
> �������ˤͶǤW�L������
> 50MB �q�l�l�� �Ghttp://sinamail.sina.com.hk
>
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster
>


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

Предыдущее
От: "ngterry"
Дата:
Сообщение: re: REFERENCES
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Referential Integrity Triggers