how to find nth highest salary
Answer Posted / amit
Select salary
from employees
order by salary desc
limit n-1,1;
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
Explain about Normalization?
What is the downside of using udf?
What is normalization according to you and explain its different levels?
How to create user defined functions with parameters?
Explain the functionalities that views support?
What is bit data type? What's the information that can be stored inside a bit column?
What is the difference between a stored procedure and a user defined function?
How many database files are there in sql server 2000?what are they?
How to attach adventureworkslt physical files to the server?
What is the sql case statement used for?
How many types of triggers in sql server?
What happens if null values are involved in bitwise operations?
Is it possible to update the views? If yes, how, if not, why?
What is user-defined function? Explain its types i.e. Scalar and inline table value user-defined function?
What is instead of trigger sql server?