How to get the repeated values by using sql in sas ?
Answers were Sorted based on User's Feedback
Answer / rg
proc sql;
select name, count(*)
from data
group by name
having count(*) > 1;
quit;
| Is This Answer Correct ? | 0 Yes | 0 No |
explain the key concept of sas? : Sas-administrator
What was the last computer book you purchased? Why?
What type of tables you are using in YOUR reporting..???
2 Answers GSK GlaxoSmithKline,
Can you excute a macro within a macro? Describe.
How to convert a given date value into SAS date
9 Answers CitiGroup, Quintiles,
how to change the execute of macro
how to debug and test the sas program? : Sas-administrator
how to read raw data in sas. Do it manually and throw the programming.
what is the difference between floor and ceil functions in sas? : Sas-administrator
what is the use of sas management console? : Sas-di
what is the use of catalog?
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data set to a second data set, and the non-matches of the right-most data set to a third data set?