nerdalert1
Programmer
Hello all. When Selecting from the Inserted table on a trigger wont there always be just one record?
UPDATE Customer Set MailSend = 1 where CustNumb =
(SELECT CustNumb FROM INSERTED)
This is on the insert of a new record. Wont I only have one value for this each time? Somehow I am hearing this is updating multiple records.
UPDATE Customer Set MailSend = 1 where CustNumb =
(SELECT CustNumb FROM INSERTED)
This is on the insert of a new record. Wont I only have one value for this each time? Somehow I am hearing this is updating multiple records.