Recursive FOREIGN KEY?

Поиск
Список
Период
Сортировка
От Joe Stump
Тема Recursive FOREIGN KEY?
Дата
Msg-id 002a01c419de$49e78400$9601a8c0@jstump
обсуждение исходный текст
Ответы Re: Recursive FOREIGN KEY?  (Joe Stump <joe@joestump.net>)
Список pgsql-general
I have a table that will have a parent/child relationship (specifically
a recursive collection of categories) and was wondering if I can
reference a key in the same table ...

CREATE TABLE categories (
  categoryID integer PRIMARY KEY,
  parentID integer REFERENCES categories (categoryID) ON DELETE CASCADE,

  ...
);

Is this supported? Any comments from people out there who have created
such setups? I'm new to PGSQL and looking hard at converting from MySQL
so all of these fun features are new to me :)

Thanks!

--Joe

--
Joe Stump, President
JCS Solutions
http://www.jcssolutions.com
(734) 786 0176


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

Предыдущее
От:
Дата:
Сообщение: thread_test.c problems
Следующее
От: Joe Stump
Дата:
Сообщение: Re: Recursive FOREIGN KEY?