how to delete the duplicates by using proc sql?
Answers were Sorted based on User's Feedback
Answer / shivakrishna.yenaganti
Proc SQL noprint;
create table unique as select distinct (*) from dsn;
quit;
| Is This Answer Correct ? | 22 Yes | 2 No |
Answer / arpit
proc sql;
select distinct (*) from sasuser.xyz;
quit.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / chowdary
In constraints time using unique
In datasets using distinct()
| Is This Answer Correct ? | 1 Yes | 0 No |
How to find out no. of business days in a month using macros.???(excluding weekends and holidays).
how can you create zero observation dataset? : Sas programming
what is the prob plot in clinical domain
what are different type of sas servers ? On which server does the sas code execute ?
How do you read in the variables that you need?
what is the difference between the SAS v8 and SAS v9?
how could you generate test data with no input data? : Sas programming
What is proc sort?
explain what is data set in sas? : Sas-administrator
What are the Aggregate functions in SQL ?
what is the effect of the options statement errors=1? : Sas programming
Can you excute a macro within a macro? Describe.