Hello,
I have a trigger AFTER INSERT inside which I must update the value of a column of the row that has been just inserted. I obviously cannot use :
SET new.column = value;
I've tried to do a manual update in the trigger but it's also not allowed.
Is there any simple way to work this out ?
Many thanks !