Here is the basic Syntax:
update table1
SET serverowner = (
select serverOwner
from table2
where table1.servername = table2.servername
)
where servername in (select servername from table2)
GO
Sorry for the late reply, I overlooked some older emails...
----------------------------------------------------