I want to use trigger on specific table where task is to perform update on one column of each row when request for delete is made.
I cant use INSTEAD OF here as it only supports view.
Two ways I can think of straight away:
CREATE RULEBEFORE DELETE trigger performing UPDATE when fired and return NULL from it. See CREATE TRIGGER