Find out the 3rd highest salary?
Answer Posted / kaushal kassi
select distinct a.sal
from employee a
where 3=(select count(distinct b.sal)
from employee b
where a.sal<=b.sal)
| Is This Answer Correct ? | 24 Yes | 12 No |
Post New Answer View All Answers
What are the three pl sql block types?
What is mutating table error?
How to display the current date in sql?
How show all rows in sql?
Define the select into statement.
what is a trigger in mysql? : Sql dba
Is json a nosql?
what are ddl statements in mysql? : Sql dba
how to create a test table in your mysql server? : Sql dba
Can there be more than one function with a similar name in a pl/sql block?
What are the indexing methods?
Can we use pl sql in sql server?
How do you update sql?
Are sql database names case sensitive?
What are inbuilt functions in sql?