BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Pooja98
Fluorite | Level 6
Difference between merge and proc sql
1 ACCEPTED SOLUTION

Accepted Solutions
unison
Lapis Lazuli | Level 10

Try this

data have;
	input name :$10.;
	datalines;
Ram
Seetha
Radha
Bheem
Arjun
Seetha
Raj
Ram
;
run;

data desired_output;
	input name :$10.;
	datalines;
Ram
Seetha
Radha
Bheem
Arjun
Raj
;
run;

data have_with_rownum;
	set have;
	rownum=_n_;
run;

proc sort data=have_with_rownum nodupkey out=dedup;
	by name;
run;

proc sort data=dedup out=want(keep=name);
	by rownum;
run;

/*Check that want=desired_output*/
proc compare base=desired_output compare=want;
run;
-unison

View solution in original post

8 REPLIES 8
ed_sas_member
Meteorite | Level 14

Hi @Pooja98 

 

Both DATA step merges and PROC SQL joins enable to join two or more tables.

Sometimes they can produce the same outputs.

Here are some of the main differences:

- contrary to DATA step merges, you don't need to sort your data when you use PROC SQL joins

- you need to add a "create table xxx as" clause in the PROC SQL as the default output is a report

- common columns need to have the same name in a DATA step merge, which is not the case for PROC SQL.

- PROC SQL does not overlay common columns by default -> you need to mention one explicitly in the select clause or use the COALESCE option

- Another thing is that you can use another operator that = in you joint expression.

- in case your input datasets have not a unique "key" for merging, it is useful to use PROC SQL as by design, it will create the Cartesian product of input datasets as the result and then delete observations that don't meet the join expression condition(s) -> so depending on the method you choose, you can have different results.

 

PROC SQL can be also more efficient, especially if you have large datasets.

 

Hope this help!

 

Best,

Pooja98
Fluorite | Level 6
Thanks a lot!!
Pooja98
Fluorite | Level 6
What is %include statement??
ed_sas_member
Meteorite | Level 14

Hi @Pooja98 

 

The %include statement allow you to bring a SAS program stored in an external file in your current program.

 

Here is the documentation about this statement: http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000214504.htm

ChrisHemedinger
Community Manager

Long-time SAS user and community member @Rick_Andrews summarizes the differences and techniques in this article:

Learn from the Experts! Check out the huge catalog of free sessions in the Ask the Expert webinar series.
Pooja98
Fluorite | Level 6
Hi, can anyone help me with this???
I need to remove duplicates and at the same time i don't want to change my order

Name

Ram
Seetha
Radha
Bheem
Arjun
Seetha
Raj
Ram

The output should be :

Ram
Seetha
Radha
Bheem
Arjun
Raj

I tried both nodupkey and distinct, i got the results but name variable displaying in ascending order
unison
Lapis Lazuli | Level 10

Try this

data have;
	input name :$10.;
	datalines;
Ram
Seetha
Radha
Bheem
Arjun
Seetha
Raj
Ram
;
run;

data desired_output;
	input name :$10.;
	datalines;
Ram
Seetha
Radha
Bheem
Arjun
Raj
;
run;

data have_with_rownum;
	set have;
	rownum=_n_;
run;

proc sort data=have_with_rownum nodupkey out=dedup;
	by name;
run;

proc sort data=dedup out=want(keep=name);
	by rownum;
run;

/*Check that want=desired_output*/
proc compare base=desired_output compare=want;
run;
-unison
Pooja98
Fluorite | Level 6
 

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!

What is Bayesian Analysis?

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.

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
  • 8 replies
  • 1289 views
  • 2 likes
  • 4 in conversation