Re: Adjacency List or Nested Sets to model file system hierarchy?

Поиск
Список
Период
Сортировка
От Richard Broersma Jr
Тема Re: Adjacency List or Nested Sets to model file system hierarchy?
Дата
Msg-id 26708.16338.qm@web31806.mail.mud.yahoo.com
обсуждение исходный текст
Ответ на Re: Adjacency List or Nested Sets to model file system hierarchy?  ("Merlin Moncure" <mmoncure@gmail.com>)
Ответы Re: Adjacency List or Nested Sets to model file system hierarchy?
Список pgsql-general
> Can you describe in a little bit more detail about what you mean by
> 'Adjaceny LIst'?

Adjaceny list is the term used in the celko book to refer to a table that is recurively related to
itself.

create table foo (
id        integer  primary key,
parentid  integer references foo (id),
name      varchar not null,
);


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