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

Answer Posted / beneet kumar pandey

/*second highest salary*/
first select max sal from employee table then select second
max sal from employee table.

Select max(salary) less then(select max(salary) from
employee) from employee;

/*same condition for fifth highest salary*/

Is This Answer Correct ?    1 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does P-value signify about the statistical data?

847


What is the good sas programming practices for processing large data sets?

622


how do the in= variables improve the capability of a merge? : Sas programming

931


What do you know about sas and what we do? : sas-grid-administration

596


what other sas products have you used and consider yourself proficient in using? : Sas programming

679






What are the special input delimiters used in SAS?

650


How do you add a number to a macro variable? : sas-macro

541


what is sas metadata server? : Sas-di

582


what are the best practices to process the large data sets in sas programming? : Sas-administrator

529


What is the difference between %local and %global? : sas-macro

663


Tell e how how dealt with..

1765


What is run-group processing?

620


Hi, If anyone has base SAS certification dumps, please share.

1381


how many types prompting framework can be broken down to? : Sas-bi

625


Hello, I have PROC SQLs results group by 3 fields and I use SUM and COUNT functions in SQL. The problem is when I try to display my result with PROC TABULATE. I am getting very big numbers. I believe I make a mistake some where in Tabulate. Here is my Proc Tabulate. PROC TABULATE DATA=OUT04_05 FORMAT=12.; CLASS YR CENTRE VISA / PRELOADFMT EXCLUSIVE; VAR NEWUSER FRAUD TRANSFER AUTUSER REISSUE; TABLE CENTRE ALL, (YR ALL)*VISA, (NEWUSER*F=COMMA12. AUTUSER*F=COMMA12. FRAUD*F=COMMA12. TRANSFER*F=COMMA12. REISSUE*F=COMMA12.) / MISSTEXT={LABEL='0'} PRINTMISS RTS=20; FORMAT VISA VISAFMT.; KEYLABEL SUM = ' ' ALL = 'TOTAL'; LABEL YR = 'DATE YEAR' NEWUSER = 'TOTAL NEW ACCT' TRANSFER = 'TOTAL TRANSFER' FRAUD = 'TOTAL FRAUD TRANSFER' AUTUSER = 'TOTAL AUTH USERS' REISSUE = 'TOTAL REISSUE'; When I code it like : NEWUSER*N*F=COMMA12. AUTUSER*N*F=COMMA12. I get same amount numbers but to find a NEWUSER I use COUNT(*) and to find AUTUSER I use SUM(xxxx) function so both result shouldn’t be the same my problem is in this point. Could you tell me where the problem in code is. How can I display my result? TX.

1770