BookmarkSubscribeRSS Feed
stat_sas
Ammonite | Level 13

Another way to do this...

proc sql;
select x1, y1 into :x2, :y2 from have
where group=2;
select x1, y1 into :x3, :y3 from have
where group=6;
quit;

data want;
set have;
x2=&x2;
y2=&y2;
x3=&x3;
y3=&y3;
run;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 0 replies
  • 715 views
  • 0 likes
  • 1 in conversation