will trillich <will(at)serensoft(dot)com> writes:
> is it possible to have a rule DO INSTEAD more-than-one-thing?
Sure.  Observe the CREATE RULE reference page:
CREATE RULE name AS ON event
    TO object [ WHERE condition ]
    DO [ INSTEAD ] action
where action can be:
NOTHING
|
query
|
( query ; query ... )
|
[ query ; query ... ]
			regards, tom lane