Find out the 3rd highest salary?
Answer Posted / karna
Hi Friends,
to get the nth highest value of a column in a table,please
use the below simple query
select min(column) from table where column in(select top n
column from table)
any queries,mail me at karun84@gmail.com
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
Explain isolation levels. : Transact sql
Name some usages of database trigger?
Where is all the data on the internet stored?
What is sql exception?
What do you mean by rowid?
What is sqlca in db2?
how can I make a script that can be bi-language (supports english, german)? : Sql dba
What are database links used for?
Why join is faster than subquery?
What is sql lookup?
How to change a value of the field ‘salary’ as 7500 for an employee_name ‘john’ in a table employee_details?
What is trigger in sql and its types?
What is sql constant?
Show how functions and procedures are called in a pl/sql block.
Explain the significance of the & and && operators in pl sql.