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
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
Explain the use of proc print and proc contents?
Can you suggest us materials for sdtm mapping?
Describe the function and untility of the most difficult SAS macro that you have written.
How do you delete duplicate observations in sas?
what is the use of proc contents and proc print in sas? : Sas-administrator
How to create a permanent sas data set?
explain what is data set in sas? : Sas-administrator
What is the difference between match merge and one to one merge?
What are common programming errors committed in sas
What is SAS?
describe the interaction table in sas di? : Sas-di
What is by-group processing?
Can you execute macro within another macro? : sas-macro
what are some problems you might encounter in processing missing values? In data steps? Arithmetic? Comparisons? Functions? Classifying data? : Sas programming