find 2nd highest salary of person using cursor concept?

Answers were Sorted based on User's Feedback



find 2nd highest salary of person using cursor concept?..

Answer / amruta dash

select max(salary) from tbl where salary not in (select max
(salary) from tbl);

Is This Answer Correct ?    11 Yes 6 No

find 2nd highest salary of person using cursor concept?..

Answer / jcreddy

select e1.salary from employee e1
where 1 = (select count(salary) from employee e2 where
e1.salary < e2.salary)
order by marks asc
-- by changeing from '<', to '>' you will get min salary

Is This Answer Correct ?    4 Yes 0 No

find 2nd highest salary of person using cursor concept?..

Answer / manju

DECLARE authors_salary CURSOR
select top2(salary) from tb_employee order by desc salary

open author_salary
FETCH NEXT FROM authors_salary into @topsalary

Is This Answer Correct ?    4 Yes 1 No

find 2nd highest salary of person using cursor concept?..

Answer / krish

select max(sal) frem tbl where sal <(select max(sal) from tbl;

Is This Answer Correct ?    3 Yes 1 No

find 2nd highest salary of person using cursor concept?..

Answer / pawan

select * from emp a where 2=(select count(distinct(sal)) from emp b where a.sal<=b.sal);

Is This Answer Correct ?    0 Yes 0 No

find 2nd highest salary of person using cursor concept?..

Answer / b.mamatha

select * from tabl1 where salary=(select max(salary) from
tabl1 where salary<(select max(salary) from tabl1)

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More SQL Server Interview Questions

List the ways in which dynamic sql can be executed?

0 Answers  


Can we insert data into view sql server?

0 Answers  


What is indexing in sql server with example?

0 Answers  


How to enter date and time literals in ms sql server?

0 Answers  


what is create database syntax? : Sql server database administration

0 Answers  






Define inner join? Explain with an example?

0 Answers  


How to insert a new row into a table with "insert into" statements in ms sql server?

0 Answers  


What are sql server functions?

0 Answers  


What do you understand by physical_only option in dbcc checkdb?

0 Answers  


How do you size a resultset?

0 Answers  


How to provide values to stored procedure parameters in ms sql server?

0 Answers  


What is clustered index

0 Answers  


Categories