A Microsoft platform for building enterprise-level data integration and data transformations solutions.
Hi @him tim
If I understand your question correctly, you probably need this update query:
;WITH CTE AS
(
SELECT A.*,I.id_pk AS New_id_Pk
FROM Address_Table A JOIN Individual_Table I ON A.uniqueID=I.uniqueID
)
UPDATE CTE
SET id_pk = New_id_Pk
Of course, it would be better if you could provide the update query you tried before, we can provide some suggestions based on your query.
Best regards,
LiHong