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?

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 16 replies
  • 2836 views
  • 3 likes
  • 5 in conversation