TABLE 1.
Student | Math | English | Science
Sue 3.5 6.0 2.1
Amy 3.7 5.3 2.8
Cindy 2.9 5.8 3.5
Kevin 3.2 6.2 2.1
TABLE 2.
Math National Avg | English National Avg | Science National Avg
3.6 6.1 3.8
TABLE WANT
Student | Math | English | Science | Math National Avg | English National Avg | Science National Avg
Sue 3.5 6.0 2.1 3.6 6.1 3.8
Amy 3.7 5.3 2.8 3.6 6.1 3.8
Cindy 2.9 5.8 3.5 3.6 6.1 3.8
Kevin 3.2 6.2 2.1 3.6 6.1 3.8
I want to combine table 1 and table 2 to create table want. I don't know how to combine tables without an unique idenitifier. Someone please help.
Something like this (not tested - for tested code post test data in the form of a datastep):
data want; merge table1 table2; run;
I already tried this, and it didn't work. It came out like this:
Student | Math | English | Science | Math National Avg | English National Avg | Science National Avg
Sue 3.5 6.0 2.1
Amy 3.7 5.3 2.8
Cindy 2.9 5.8 3.5
Kevin 3.2 6.2 2.1
3.6 6.1 3.8
Data want;
If _n_ = 1 then set table2;
Set table1;
Run;
Try this.
This shold work:
data a; a=1; output; a=2; output; run; data b; c=1; run; proc sql; create table WANT as select * from A full join B on 1=1; quit;
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.