How to get second top scorer student from a class- table
having different sections A, B, C & D? each section has same
number of student.
Answer Posted / maddy
proc sql;
select max(score) < (select max(score) from table)
from table;
quit;
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
name the scheduler for scheduling job and explain the scheduler? : Sas-di
what are the new features included in the new version of sas i.e., Sas 9.1.3? : Sas programming
What is the different between functions and PROCs that calculate the same simple descriptive statistics?
how to debug and test the sas program? : Sas-administrator
Explain the use of proc gplot? : sas-grid-administration
Difference between SAS STATA & SPSS?
What are the statements that are executed only?
What is the maximum length of the macro variable? : sas-macro
Explain why double trailing @@ is used in input statement?
How do you debug and test your SAS programs?
Approximately what date is represented by the SAS date value of 730?
Explain the difference between informat and format with an example.
Describe what are the different levels of administrative users in sas? : sas-grid-administration
what is snowflake schema? : Sas-di
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming