how to delete the duplicates by using proc sql?
Answer Posted / shivakrishna.yenaganti
Proc SQL noprint;
create table unique as select distinct (*) from dsn;
quit;
| Is This Answer Correct ? | 22 Yes | 2 No |
Post New Answer View All Answers
which date functions advances a date time or date/time value by a given interval? : Sas programming
explain what is data set in sas? : Sas-administrator
Have you ever used the SAS Debugger?
explain the key concept of sas? : Sas-administrator
What is the difference between class statement and by statement in proc means?
What versions of SAS have you used (on which platforms)?
How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?
What are the special input delimiters used in SAS?
How do you use the do loop if you don’t know how many times you should execute the do loop?
In ARRAY processing, what does the DIM function do?
What is the maximum length of the macro variable?
what are informats in sas? : Sas-administrator
What is the work of tranwrd function?
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
How to create an external dataset with sas code?