Assuming that CUST_ID and ID is enough for identifying unique rows in both tables the below SQL works fine.
PROC SQL;
UPDATE MASTER
SET CITY = (SELECT INFILE.CITY
FROM INFILE
WHERE INFILE.CUST_ID = MASTER.ID)
,AMT = (SELECT...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.