Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

how to get second highest salary from a employee table and
how get a 5th highest salary from a employee table?

Answer Posted / na

Proc sql;
Select salary
From
Where salary in (select max
(salary) from
Where salary <(select max
(salary) from
));
Quit;
For second salary
calculation

If salary is not repeted
then
Proc sort data= xxx;
By salary;
Run;
Options firstobs =5;
Proc print data = xxx;
Var salary;
Run;

Is This Answer Correct ?    4 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how will you locate the sas platform applications? : Sas-bi

1084


What are the data types does SAS contain?

1169


In ARRAY processing, what does the DIM function do?

1232


what are sas bi dashboard components? : Sas-bi

1231


which features do you use to check the data validations and errors? : Sas-administrator

1093


What is SAS informats?

1165


What will calendar procedure do?

1116


what is data governance? : Sas-di

1069


How can you create a macro variable with in data step? : sas-macro

1092


if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation

1659


Do you need to know if there are any missing values?

1086


Can you explain the process of calendar?

1158


What is the basic syntax of a sas program?

1264


How will you generate test data with no input data?

1232


What is program data vector (pdv) and what are its functions?

1318