> I use triggers with plpgsql, now I have a situation I have to copy the
> entire tuple of a table before it gets deleted to another table. I
> wonder if is there a way to say:
If you have a unique key you could do the following:
INSERT into C select * from old_table where key = OLD.key.
--
Mike Nolan