Find out the 3rd highest salary?
Answer Posted / sheik
select top 1 * from(select top 3 *from emp order by salary
desc)d order by salary asc
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Which sql statement is used to delete data from a database?
What are the advantages of pl sql over sql?
Can a primary key be a foreign key?
List different type of expressions with the example.
What is sql and db2?
What is a unique constraint?
Explain the significance of the & and && operators in pl sql.
GLOBAL TEMPORARY TABLE over Views in advantages insolving mutating error?
What is difference between pls_integer and integer?
how to select unique records from a table? : Sql dba
how can we know the number of days between two given dates using mysql? : Sql dba
what is the difference between nested subquery and correlated subquery?
What is difference between sql and mysql?
What is where clause in sql?
What is a sql instance vs database?