BookmarkSubscribeRSS Feed
Tom
Super User Tom
Super User

Post the code.  Or Post the lines from the SAS log. Make sure to use the Insert Code or Insert SAS Code button.

Your original code was only referencing one dataset named A but assigning the alias B to it because you wrote

from A B
where ...

To see that type of mistake in action try this code:

data a b; 
  set sashelp.class; 
  if sex='M' then output a ;
  else output b;
run;

proc sql ;
select a.*,b.*
from a b
;
quit;

Instead use

from A , B
where ...

or

from A 
inner join B
on ....

 

ChrisNZ
Tourmaline | Level 20

>  Could someone let me know where my code went wrong, I keep getting dataset a variables.  That's it.  Where is the set b?

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 16 replies
  • 1718 views
  • 3 likes
  • 5 in conversation