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 are the data types in sas?
What is the SAS data set?
How to create list output for cross-tabulations in proc freq?
What is a method to debug and test your SAS program?
what is PhaseIII, ODS, TLG, Macro and Proc in SAS
what is sas application server, database server, sas olap server and sas metadata server? : Sas-di
how does sas handle missing values in procs? : Sas programming
Give e an example of..
What are the different operating system platforms in which we can use sas? : sas-grid-administration
What is the difference between input and infile statement?
what is treatment emergent events and treatment emregent adverse event
What’s the difference between var b1 – b3 and var b1 — b3?
what is hash files in sas and why we are using this one in sas?
Explain substr function?
what do the pad and dim functions do? : Sas programming