21
of 62
u
create or replace trigger v_customer_id
u
instead of delete on v_customer
u
begin
u
delete from address
u
where cust_id=:old.cust_id;
u
delete from customer
u
where cust_id=:old.cust_id;
u
end;
INSTEAD-OF Delete