how to remove the duplicates by proc sql?
Answers were Sorted based on User's Feedback
Answer / xxx
proc sql;
select id where id(select id from tablename)group by id
having id>1;
quit;
| Is This Answer Correct ? | 1 Yes | 10 No |
When looking for data contained in a character string of 150 bytes, which function is the best to locate that data: scan, index, or indexc?
how to do user inputs and command line arguments in sas?
Explain proc sort?
What is by-group processing?
One way of creating a new variable in Macros is by % Let....What is the other way..?
What is a put statement?
what do you mean by data staging area? : Sas-di
Given an unsorted data set, how to read the last observation to a new data set?
What does PROC print, and PROC contents do?
What is the difference between reading data from an external file and reading data from an existing data set?
Name statements that function at both compile and execution time.
Mention what is PROC in SAS?