please tell me the query to get details of the employee
having the second largest salary
Answer Posted / ss
select max(salary) from emp
where salary<(select max(salary) from emp)
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the requirements on sql server network connections?
What is the default server name for sql server?
Can a trigger be created on a view?
What are the mathematical functions supported by sql server 2005?
What are the lambda triggers?
What are triggers in ms sql server?
Can two different columns be merged into single column? Show practically?
What are the system database in sql server 2005?
Can an automatic recovery be initiated by a user?
Explain what are the restrictions while creating batches in sql server?
What is view in sql?
Can you insert NULL in unique column?
What are the difficulties faced in cube development? : sql server analysis services, ssas
How do I make a resultset scrollable?
Explain primary key and foreign key constraints?