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

How to get @@error and @@rowcount at the same time?

0 Answers  


how we can use a database with php.

2 Answers   HCL, IT Solution,


What is the difference between temp table and table variable?

8 Answers   Microsoft,


What do you mean by SQL injection attack?

0 Answers   Ittiam Systems,


can primery key be a non clustered index?

10 Answers  






Do you know what is sql service broker?

0 Answers  


What are the triggers in sql?

0 Answers  


Can we use pragma autonomous_transaction in trigger?

0 Answers  


What objects does the fn_my_permissions function reports on? : sql server security

0 Answers  


What is Extended user-defined?

0 Answers  


How you can minimize the deadlock situation?

0 Answers  


What is the difference between functions and stored procedures?

0 Answers   Accenture,


Categories