Reeza provides the ideal solution, eliminating the need to create a new data set.
proc sql; update have1 as h1 set var2=(select var2 from have2 as h2 where h1.var1=h2.var1) where var1 in (select var1 from have2); quit;
I reckon the where statement only improves performance. If you're updating only a few values in a very large data set then this will significantly speed up the update. Definitely my favorite solution to the problem.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.