How to get the repeated values by using sql in sas ?
Answer Posted / rg
proc sql;
select name, count(*)
from data
group by name
having count(*) > 1;
quit;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what does the run statement do? : Sas programming
what do the sas log messages "numeric values have been converted to character" mean? What are the implications? : Sas programming
How to specify variables to be processed by the freq procedure?
What is the difference between where and if statement?
why is a stop statement needed for the point=option on a set statement? : Sas programming
What areas of SAS are you most interested in?
What is the function of output statement in a SAS Program?
how many types of prompts are there? : Sas-bi
What is the basic syntax of a sas program?
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?
Describe crosslist option in tables statement?
what is sas olap server? : Sas-di
What is the basic structure of the SAS base program?
what is treatment emergent events and treatment emregent adverse event
What are the uses of sas?