BookmarkSubscribeRSS Feed
Sabharish
Fluorite | Level 6

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

2 REPLIES 2
Reeza
Super User

@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. 

Ksharp
Super User

proc sql;
create table have (
 var1 num,
 var2 num,
 var3 num
);

insert into have
 values(1,1,1)
 values(2,2,2);

quit;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 874 views
  • 0 likes
  • 3 in conversation