how to delete the duplicates by using proc sql?
Answer Posted / arpit
proc sql;
select distinct (*) from sasuser.xyz;
quit.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming
What is the difference between %put and symbolgen? : sas-macro
What is a method to debug and test your SAS program?
What is the difference between class statement and by statement in proc means?
Mention the difference between ceil and floor functions in sas?
What is the difference between one to one merge and match merge? Give an example.
How do you specify the number of iterations and specific condition within a single do loop?
explain the key concept of sas? : Sas-administrator
What are the special input delimiters used in SAS?
what techniques and/or procs do you use for tables? : Sas programming
Explain the difference between nodup and nodupkey options?
What are the difference between the sas data step and sas procs?
What are the features of SAS?
Can you execute macro within another macro? : sas-macro
How is character variable converted into numeric variable and vice versa?