please tell me the query to get details of the employee
having the second largest salary
Answer Posted / shivangi
Select max(Salary) from employeetable where salary < (select
max(salary) from Employeetable)
| Is This Answer Correct ? | 11 Yes | 1 No |
Post New Answer View All Answers
Define Unique Key?
How do you check sql server is up and running?
How to loop through result set objects using odbc_fetch_row()?
how to determine the service pack currently installed on sql server? : Sql server database administration
Do you know what are different types of replication in sql server?
How you would rewrite the sql query to return the customerid sorted numerically?
What is instead of trigger sql server?
What is difference between temp table and cte?
Define cursor locking
Equi join and non equi join is possible with sql server?
Why use triggers?
How to backup SQL Server Reporting Services ?
How to create a simple user defined function in ms sql server?
Do you know what is a linked server in sql server?
What is the difference between a "where" clause and a "having" clause?