Automaticly delete related data

Поиск
Список
Период
Сортировка
От Trond Arve Nordheim
Тема Automaticly delete related data
Дата
Msg-id 1006654229.11145.8.camel@geekpower
обсуждение исходный текст
Ответы Re: Automaticly delete related data  (Stephan Szabo <sszabo@megazone23.bigpanda.com>)
Re: Automaticly delete related data  ("Andrew G. Hammond" <drew@xyzzy.dhs.org>)
Список pgsql-sql
Hi!

I'm developing a publishing system and are trying to create
functions/triggers that automaticly wipes out related data to the data
currently beeing deleted...

For example, I have a table containing site objects (an article or
whatever) where I have the following fields;

int_objectid SERIAL NOT NULL,
str_objecttitle VARCHAR(255) NOT NULL,
...
...

Then, I have a table defining the content of that data;
int_objectid INT(11) NOT NULL
str_data TEXT NOT NULL,
...
...

What I want to do is;
When I delete a row from the first table, I want all rows with mathing
int_objectid values in the second table to be deleted.

I've been reading in a couple of online books and the PostgreSQL
documentation all day without beeing able to make something of this...

Can anyone give me a hint, or point me in the direction of some
documentation that can help me out?

Sincerly,
Trond Arve Nordheim





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

Предыдущее
От: "Andrew G. Hammond"
Дата:
Сообщение: Re: How to return more than one row of data from a function in PL/pgSQL
Следующее
От: MindTerm
Дата:
Сообщение: How to create function with unspecified number of input parameters ?