How to find the second largest salary in the emp database and
also How to find 3rd,4th and so on ........ in the emp database
plz mail the answer @ mak2786@gmail.com
Answer Posted / sandee saxena
-- Create table #temp
-- (
-- Emp_id int identity(1,1),
-- Emp_Name varchar (100) ,
-- Emp_Salary int
-- )
--
-- Insert into #Temp (Emp_Name, Emp_Salary) values
('kunal', '2000')
-- Insert into #Temp (Emp_Name, Emp_Salary) values
('aditya', '5000')
-- Insert into #Temp (Emp_Name, Emp_Salary) values
('abhishek', '6000')
-- Insert into #Temp (Emp_Name, Emp_Salary) values
('kailash', '5000')
-- Insert into #Temp (Emp_Name, Emp_Salary) values
('rohit', '8000')
-- Insert into #Temp (Emp_Name, Emp_Salary) values
('rakesh', '3000')
Select a.* From #temp a,
(Select Max(a.Emp_salary)Emp_Salary From #temp a,
(Select Max(x.Emp_salary)Emp_Salary From #temp a,
(Select a.* From #temp a,(Select Max (Emp_Salary)Emp_Salary
From #Temp) b
Where a.Emp_Salary < b.Emp_Salary ) x ) y
where a.Emp_Salary < y.Emp_Salary)Z
where a.Emp_Salary = z.Emp_Salary
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Explain logical operators in sql server?
Explain what is analysis service repository?
What is policy based management (pbm)? : sql server database administration
What is coalesce in sql server?
How can you insert values in multiple rows using one Insert statement?
How does using a separate hard drive for several database objects improves performance right away?
Can a database be shrunk with users active?
How to list all columns in a table using odbc_columns()?
What is difference between sql and sql server?
What is a hint?
How to make a remote connection in a database?
How to set database to be read_only in ms sql server?
What are different types of replication in sql server?
Where are SQL server users names and passwords are stored in sql server?
how would you troubleshoot blocking? : Sql server database administration