문제

I know from (Insert Update trigger how to determine if insert or update) that an UPDATE transaction causes rows in the deleted table

what are the contents of inserted and deleted when updating a single row?

도움이 되었습니까?

해결책

Inserted contains that one row being updated with the new values (after the UPDATE), while Deleted contains that one row being updated with the old values (before the UPDATE)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top