BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
mlogan
Lapis Lazuli | Level 10

Hi all,

I always merge tables with the following method which require me to sort both tables by BY field. Is there a better way where I don't have to sort the table before merging?

 

This is what I had been doing:

 

DATA Want;
MERGE have1(in=a) 2ave2(in=b);
BY common_variable;
IF a=1;
RUN;

 

Thanks,

1 ACCEPTED SOLUTION

Accepted Solutions
SASKiwi
PROC Star

You could do the same thing in SQL. Behind the scenes SQL still sorts your data but you avoid having to sort it yourself. SQL isn't necessarrily better, just different:

 

proc sql;
  create table want as 
  select *
  from have1 as a
  left join have2 as b
  on a.common_variable = b.common_variable;
  ;
quit; 

View solution in original post

2 REPLIES 2
Astounding
PROC Star

The most common replacement would be a SQL left join.  Here's a paper that talks about more variations than you might want to see:

 

http://www2.sas.com/proceedings/sugi30/249-30.pdf

 

There are other, more complex methods, including creating an index, hashing, creating a format.  But SQL would definitely the place to begin. 

 

If you are concerned about getting identical results to the MERGE, you have to consider whether any data sets might have more than one observation per value of COMMON_VARIABLE.  If both data sets might have more than one, you have to ask yourself what the result should be ... not an easy topic.

SASKiwi
PROC Star

You could do the same thing in SQL. Behind the scenes SQL still sorts your data but you avoid having to sort it yourself. SQL isn't necessarrily better, just different:

 

proc sql;
  create table want as 
  select *
  from have1 as a
  left join have2 as b
  on a.common_variable = b.common_variable;
  ;
quit; 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 2 replies
  • 1054 views
  • 2 likes
  • 3 in conversation