The following TRIGGER is firing and UPDATING "ALL" rows my table. How can I modify the SQL UPDATE portion to ONLY update the row being UPDATED?
create trigger trgu_Customer on Customer for update as
begin
if update (Telephone_Number)
update Customer set touchdate = (select getdate())
end
thx in advance..
create trigger trgu_Customer on Customer for update as
begin
if update (Telephone_Number)
update Customer set touchdate = (select getdate())
end
thx in advance..