I have the following update statement
Declare @customerName varchar(40)
Declare @age int
UPDATE [somedatabase].[contact] set age = @age where name = @customerName;
I also have a seperate table lets call cusHash with names and ages. Names are unique. I would like to read the cusHash and run my update statement for all of its values.