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
Name some categories in sas 9? : sas-grid-administration
How to read an input file in sas?
Explain translate function?
What is slibref?
Give some examples where proc report’s defaults are different than proc print’s defaults?
Give e an example of..
what is the difference between floor and ceil functions in sas? : Sas-administrator
Do you need to compute new variables? If so,should you do this before you execute the report-writing procedure?
what is sas application server, database server, sas olap server and sas metadata server? : Sas-di
explain what is factor analysis? : Sas-administrator
What are the default statistics that proc means produce?
Explain what is SAS informats?
how many types prompting framework can be broken down to? : Sas-bi
For what purpose would you use the RETAIN statement?
How would you include common or reuse to be processed along with your statements?