Easy way to loop through records in a table.
declare @cursor cursor, @customerID int
set @cursor = cursor for select CustomerId from StoreUpdates
open @cursor
while 1=1
begin
fetch from @cursor into @customerID
if @@fetch_status 0
break
update Stores set Name = (select StoreName from StoreUpdates where CustomerId = @customerID) where CustomerId = @customerID;
end
Published by