Reputation: 125496
I've got an after insert trigger that works well.
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.
Upvotes: 1
Views: 1463
Reputation: 12226
This isn't possible. You can't modify the target table with an AFTER trigger.
Upvotes: 1