Re: Looking for some help with cascading updates...

Поиск
Список
Период
Сортировка
От Andreas Kretschmer
Тема Re: Looking for some help with cascading updates...
Дата
Msg-id 20060418183101.GA31339@KanotixBox
обсуждение исходный текст
Ответ на Looking for some help with cascading updates...  ("Mark True" <darfoo@gmail.com>)
Ответы Re: Looking for some help with cascading updates...
Список pgsql-sql
Mark True <darfoo@gmail.com> schrieb:

> 
> Here is the question:
> 
> I have a situation where I need to create triggers to cascade an insert
> operation to many tables to maintain foreign key constraints. 
> 
> So at a high level
> 
> INSERT INTO myTable (Name, Address, Zip) VALUES ('Mark', '3 Dingle St.',
> '01832')
> 
> myTable has a relation to two other tables, which contain Zip and Address. 
> Before I insert into  myTable I want to:
> 
> Check if '3 Dingle St.' exists in table Address, if not insert it
> Check if '01832' exists in table Zip and if not insert it

For such task i write a function (plpgsql). This obtains all parameters,
do the checks and insert into the other tables and the table with the fk
constraints.


HTH, Andreas
-- 
Really, I'm not out to destroy Microsoft. That will just be a completely
unintentional side effect.                              (Linus Torvalds)
"If I was god, I would recompile penguin with --enable-fly."    (unknow)
Kaufbach, Saxony, Germany, Europe.              N 51.05082°, E 13.56889°


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

Предыдущее
От: "Mark True"
Дата:
Сообщение: Looking for some help with cascading updates...
Следующее
От: "Mark True"
Дата:
Сообщение: Re: Looking for some help with cascading updates...