write the query for find the top 2 highest salary in sql
server
Answer Posted / chandan kumar
Select Top 1 salary from(select top 2 salary from emp_table
order by salary asc)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain sql server service broker?
Can you create a logon trigger in sql server 2005 express edition?
What is the importance of concurrency control?
Can we update data in a view?
explain different types of constraints? : Sql server database administration
What is set nocount on?
Why are sql functions used?
What is 2nf normalization?
How are the unique and primary key constraints different?
How to define and use table alias names in ms sql server?
Explain aggregate functions?
what are questions asked in TCS for database tester (sqlserver)for 2-3 exp?
How to create prepared statements using odbc_prepare()?
Are all views updatable ?
Can you roll back the ddl statement in a trigger?