how to find nth highest salary
Answer Posted / raman sharma
For third highest salary u can use this syntax
select min(cin) from ( select distinct cin from
cws.usertable order by cin desc ) where rownum<4
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What are logical database components? : SQL Server Architecture
What is a system database and what is a user database?
Explain the etl (extraction, transformation, and loading)?
The external application that is executed in one of the tasks does not have a log file, but only a screen log. How can I save the data from the screen? : sql server management studio
Explain different types of Normalization.
What is apply operator in sql?
What is Service Broker in sql server 2012?
Explain what stored procedure sp_replcounters is used for? : sql server replication
tell me what are the steps you will take to improve performance of a poor performing query? : Sql server database administration
how can you select rexcord(rows) from table A which is not present in Table B . Id being the FK in Table B referencing to ID Table A
Explain various data region available in ssrs with their use?
Relational calculus is what type of language?
What are the advantages of user-defined functions over stored procedures in sql server?
what’s the difference between Covering Indexes and Clustered Indexes ? how to use clustered index small ?
Why we use functions in sql server?