BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Ksharp
Super User

Each SET statement will assign a pointer to the table, even if they are the same table.

Therefore,the first one has only one SET/pointer , will output three obs.

the second one have three SET/pointer , will output 3*3 obs .

danielhanbitlee
Calcite | Level 5

Thank you for the reply. This is very helpful.

 

I would accept this as a solution as well but I'm not sure how to have multiple answers as solutions.

ballardw
Super User

Another potentially useful exercise: Compare the two resulting sets from:

data newbank;
	set banks;
		output;
	set banks;
		output;
	set banks;
		output;
run;

data newbank2;
	set banks
	    banks
	    banks
	;
run;

danielhanbitlee
Calcite | Level 5

Thank you for the exercise. This is a good point and it helps me to understand what is going on behind the scenes when combining datasets.

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
  • 18 replies
  • 5399 views
  • 1 like
  • 7 in conversation