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?  ("Merlin Moncure" <mmoncure@gmail.com>)
Список 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 по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: 8.2.3 initdb fails - invalid value for parameter "timezone_abbreviations": "Default"
Следующее
От: "Merlin Moncure"
Дата:
Сообщение: Re: Adjacency List or Nested Sets to model file system hierarchy?