How to determine if anything changed in update trigger in t-sql
Update(column) merely states that column participated in update, but not that its value has changed. For instance, update Person SET Name = Name yields true in update(name) even though Name has not been changed in any row. To check if new values differ from old ones, you would employ except because except will remove rows … Read more