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 ....
> Could someone let me know where my code went wrong, I keep getting dataset a variables. That's it. Where is the set b?
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.