BookmarkSubscribeRSS Feed
manya92
Fluorite | Level 6

What is the difference between 

 

proc sql ;

     create table 1 as

    select DISTINCT enrolid, age, sex

    from have 

quit ;

 

VS

 

 

proc sql ;

     create table 2 as

    select  enrolid, age, sex

    from have 

quit ;

 

 

 

VS

 

proc sql ;

     create table 3 as

    select DISTINCT enrolid

    from have 

quit ;

 

 

Q1. Will i get different no. of observations for each of these datasets? If yes why ?

 

Q2. What is the difference between these three .

 

Thanks

3 REPLIES 3
ballardw
Super User

Run the code and see. Create data if needed, include some duplicate rows.

Reeza
Super User

You should mock up some data and test your code. Here's some mock data for you. Run it against each of the tables and see what you're results are. Note that the first table has duplicates and the second does not. 

 

data have1;
set sashelp.class;
enrolid = _n_;
if _n_ in (1, 5, 9) then output;
output;
keep enrolid age sex;
run;

data have2;
set sashelp.class;
enrolid = _n_;
keep enrolid age sex;
run;



@manya92 wrote:

What is the difference between 

 

proc sql ;

     create table 1 as

    select DISTINCT enrolid, age, sex

    from have 

quit ;

 

VS

 

 

proc sql ;

     create table 2 as

    select  enrolid, age, sex

    from have 

quit ;

 

 

 

VS

 

proc sql ;

     create table 3 as

    select DISTINCT enrolid

    from have 

quit ;

 

 

Q1. Will i get different no. of observations for each of these datasets? If yes why ?

 

Q2. What is the difference between these three .

 

Thanks


 

manya92
Fluorite | Level 6
will try. thanks

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

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 3 replies
  • 1126 views
  • 1 like
  • 3 in conversation