How to get top scorer student from a class-table having
different sections A,B, C & D? Each section having same
number of students.
Answers were Sorted based on User's Feedback
Answer / shambhu kumar verma
Proc Sort data = AAA;
by section descending score;
run;
Data BBB;
set AAA;
by section;
if first.section;
run;
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / aloor
proq sql;
Select * from class where score =(select max(score) from
class);
quit;
| Is This Answer Correct ? | 1 Yes | 0 No |
how to add distinctly var variable values ex.. Data a; input var; datalines; 0 1 2 3 -1 -2 -3 ; run; adding all +ve value in one varibale n do the same for -ve too
what is the difference between x=substr(name,1,2); and substr(name,1,2)='x';
WHAT IS SAS WEB SERVICE and what are the steps to create an xml service ?
how can u join the two tables without using proc sql Joins and nested queries ?
What is Transaction...? And what are Comment, Roll back n Save point..?
How would you code a merge that will keep only the observations that have matches from both sets.
5 Answers Accenture, Bank Of America,
explain what is data set in sas? : Sas-administrator
How do you define proc in sas? : sas-grid-administration
Name and describe three SAS functions that you have used, if any?
is there any difference between proc summary and proc means?
What are the ways to do a “table lookup” in sas?
diff between nodup rec and ondup key???