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
This entry was posted in General. Bookmark the permalink. Post a comment or leave
What is the use of the %include statement?
how would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable? : Sas programming
how does sas handle missing values in a merge? : Sas programming
What makes sas stand out to be the best over other data analytics tools?
what is operational data and operational system? : Sas-di
How substr function works in sas?
Describe a time when you were really stuck on a problem and how you solved it?
What are the 3 components in sas programming?
What are the differences between sum function and using “+” operator?
How to create an external dataset with sas code?
Enlist the functions performed by sas.
Mention how to limit decimal places for the variable using proc means?
Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?
What is connection profile? : sas-grid-administration