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 |
Baseline definition in your study
3 Answers Accenture, Quintiles,
What is a method for assigning first.VAR and last.VAR to the BY group variable on unsorted data?
Difference between SAS STATA & SPSS?
Can you execute a macro within a macro? Describe. : sas-macro
what is the use of sas management console? : Sas-di
what has been your most common programming mistake? : Sas programming
what is Global Symbol table and Local symbol table?
What are the data types does SAS contain?
how can you sort the dataset having millions of OBS(instead of sort procedure?
how can u extract,transform and loading?
how does sas handle missing values in an update? : Sas programming
Do you use PROC REPORT or PROC TABULATE? Which do you prefer? Explain.