how to find the 2nd higgest salary in the column for example
take table name is employee?
And also find bottom 2nd lowest salary ?
Answer Posted / mohsin mukri
select max(salary) as Salary from tbl_Employee
where salary <= (select max(salary) from tbl_employee)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what is the method while we are using adapter and dataset ?
What size is a .net object?
What does the term "green architecture" mean? : .NET Architecture
where should I put this information then?
What is cache coherency and how is it eliminated? : Dot net architecture
How do you handle this COM components developed in other programming languages in .NET?
Explain how cache is used? : Dot net architecture
Define a managed code? : Dot net architecture
What are the options provived by vss to the user? how it will help us while delevoping application?
how to create applications by using Visual Studio 2012?
Define cache coherency? : Dot net architecture
What is code access security (cas)?
Define a virtual memory? : Dot net architecture
How does .net remoting work?
Why am I getting an invalidoperationexception when I serialize an arraylist?