21 of 62
ucreate or replace trigger v_customer_id
uinstead of delete on v_customer
ubegin
u    delete from address
u    where cust_id=:old.cust_id;   
u    delete from customer
u    where cust_id=:old.cust_id;
uend;
INSTEAD-OF Delete