I've got an after insert trigger that works good.
However, I want it to delete the row after it's been inserted and after the main body of the trigger completes.
How can I do that?
I have a unique id in the table.
I've got an after insert trigger that works good.
However, I want it to delete the row after it's been inserted and after the main body of the trigger completes.
How can I do that?
I have a unique id in the table.
this isn't possible. you can't modify the target table with an AFTER trigger.