Re: Way to stop recursion?

Поиск
Список
Период
Сортировка
От Jonathan Knopp
Тема Re: Way to stop recursion?
Дата
Msg-id 41A7A5C2.6080800@delegated.net
обсуждение исходный текст
Ответ на Re: Way to stop recursion?  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Way to stop recursion?
Список pgsql-sql
Tom Lane wrote:
>>CREATE TABLE parent (id INT, cola CHAR(1), common CHAR(1));
>>CREATE TABLE child (id INT, parent_id INT, cola(1), common(1));
> 
>>What I need, is when "common" is changed for a parent, then that new 
>>value is reflected in "common" for all the children, ie:
>>...
>>Problem is, when "common" is changed for a child, I need the parent and 
>>all siblings to reflect that value too, ie:
> 
> Seems to me that your real problem is a bogus database layout.  If there
> should only be one "common" value for a parent and children, then only
> store one value ... that is, "common" should exist only in the parent.
> ...

Sorry, I should have mentioned that there is a lot more to the design 
that makes this replication necessary, including another two levels to 
the tree plus the ability to have orphaned children.


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

Предыдущее
От: Andrew Sullivan
Дата:
Сообщение: Re: Way to stop recursion?
Следующее
От: Pierre-Frédéric Caillaud
Дата:
Сообщение: Re: Way to stop recursion?