Scope: Two tables. When a new patron is created, they have some information about them stored into a 2nd table (This was done using a trigger as well, it works as expected)
create trigger doct_trigger after delete on doctor for each row delete from patient where patient.PrimaryDoctor_SSN=doctor.SSN ;