Hi,
I need to create variables in a sequence like var1,var2,var3... and write the values inside that variables using proc sql.
can anyone help me out with this.
Thanks,
sabharish
@Sabharish wrote:
can anyone help me out with this.
Not with the information provided. Please explain your problem in detail. Also, justify the need for SQL.
SQL doesn't support variable lists so a data step is easier.
proc sql; create table have ( var1 num, var2 num, var3 num ); insert into have values(1,1,1) values(2,2,2); quit;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.