how to retrieve the top 3 salaries of the table using rownum
Answer Posted / ashwinee
select empnumber
from emp
where rownmum < 4 and salary in (select salary
from emp
order by salary desc)
Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
explain what is mysql? : Sql dba
What is delimiter in pl sql?
How can we debug in PL/SQL?
How can we link a sql database to an existing android app?
Explain the commit statement.
What is out parameter used for eventhough return statement can also be used in pl/sql?
Is natural join and inner join same?
how do you know the version of your mysql server? : Sql dba
What do you know by pl/sql cursors?
how to use in conditions? : Sql dba
Does a join table need a primary key?
Mention what does plvtab enables you to do when you showthe contents of pl/sql tables?
What is pragma in pl sql?
What is sql resultset?
What operators deal with null?