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 stored procedure would you use to view lock information?
What happens when converting big values to integers?
How you trouble shoot when any job fails
Explain the truncate command? : SQL Server Architecture
How to make a column nullable?
What is executereader?
When would you use the stored procedures or functions?
What is proper subset of candidate key?
What is DCL?
Difference between LEN() and DATALENGTH() in sql server ?
How the authentication mode can be changed?
Does union all remove duplicates?
Explain comment on transactions?
How optimize sql query with multiple joins in sql server?
what is an extended stored procedure? Can you instantiate a com object by using t-sql? : Sql server database administration