Created a Customers_Audit
table in my DEV_SQL
database with the columns:
[AuditID] int IDENTITY
[CustomerID] nchar(5)
[UserName] nvarchar(50)
[DeleteDate] smalldatetime
I am trying to write a delete trigger to insert an entry to the Customers_Audit
table every time a row is deleted from the Customers
table, need some help oh wise ones!