Re: Question - Mailing list pgsql-sql

From Andriy Pyrozhenko
Subject Re: Question
Date
Msg-id 1424171808.20011123095513@vanjaonline.com
Whole thread Raw
In response to Re: Question  ("Christopher Kings-Lynne" <chriskl@familyhealth.com.au>)
Responses Re: Question  ("Andrew G. Hammond" <drew@xyzzy.dhs.org>)
List pgsql-sql
Hello Christopher,

>>   I don't need delete record from jobs when I delete record from
>>   activity. But I need delete record from activity when I delete the
>>   record from jobs and I need to find this job_id in activities table!
>>   What must I do?
>>
>> CKL> Question: Why don't you just set up a foreign key that will
>> achieve exactly
>> CKL> the same thing without using RULEs?
>>
>> CKL> ie. ALTER TABLE activities ADD FOREIGN KEY (job_id)
>> REFERENCES jobs(job_id)
>> CKL> ON DELETE CASCADE;

CKL> My ALTER TABLE statement above will do exactly this.

CKL> It will delete activities when a job is deleted.  Try it in a test database.
 But also need delete activities!


-- 
Best regards,Andriy                            mailto:andriy.pyrozhenko@vanjaonline.com




pgsql-sql by date:

Previous
From: Markus Bertheau
Date:
Subject: Re: Joins~
Next
From: Gurudutt
Date:
Subject: Re: Joins~ - Thanks a lot~