Re: FOREIGN KEY: MATCH FULL

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re: FOREIGN KEY: MATCH FULL
Дата
Msg-id Pine.BSF.4.21.0109052151380.90362-100000@megazone23.bigpanda.com
обсуждение исходный текст
Ответ на FOREIGN KEY: MATCH FULL  (Gabriel Fernandez <gabi@unica.edu>)
Список pgsql-general
On Wed, 5 Sep 2001, Gabriel Fernandez wrote:

> Hi,
>
> What does it mean the MATCH FULL parameter in a foreign key specfication
> ?
>
> It seems it is only valid for a multi-column foreign key: What's a
> multi-column foreign key ?

It's only different on multi-column fks, it's valid but uninteresting
on singles.  A multi column foreign key is something like the one
in the following:
create table foo (
 a int,
 b int,
 foreign key (a,b) references bar
);
The key that's being checked is the combination of a and b.

For the unspecified match type, if either is NULL, the constraint
is passed.  For MATCH FULL, either both must be non-NULL and match
in the other table or both must be null for the constraint to pass.



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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: Bug in createlang?
Следующее
От: will trillich
Дата:
Сообщение: perl: $sth->{TYPE} ...?