Hello
I've created a temporal table and can record changes.
With temporal tables, it writes the row as-is then performs any modification.
I'd like to record who made a change and why.
This works fine for updates but is it possible with deletions?
I can record who by using a computed column (AS SUSER_SNAME())
With deletions, I can't record the why though
Is this possible?
Thanks