Trying to create a trigger just for a specific column however can only get a trigger for a whole table to work.
Create Trigger Nameblock on tblcustomer
For Insert
As
Begin
rollback transaction
print 'Name edit not allowed!'
End
I want it so it only creates the trigger if an update to CustomerName is done which is a column in the table