How to get the repeated values by using sql in sas ?
Answer Posted / naveen
proc sql;
select name count
from
group by name;
quit;
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What are the functions which are used for character handling functions?
What commands are used in the case of including or excluding any specific variables in the data set?
What is the good sas programming practices for processing large data sets?
What is the difference between nodupkey and nodup options?
What is SAS informats?
where are dashboard components are created and maintained? : Sas-bi
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 is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming
What is maximum storage capability of SAS?
How sas treats the dsd delimiters?
what are the scrubbing procedures in sas? : Sas programming
What is the maximum length of the macro variable?
What is the purpose of _character_ and _numeric_?
What does the trace option do?