Write a query to find five highest salaries from EMP table.
(there is a column SALARY)
Answers were Sorted based on User's Feedback
Answer / mohammad murtuza ali
select * from salary where rowno<6
Is This Answer Correct ? | 4 Yes | 15 No |
Answer / amit bharane
select salary from employees
where rownum<=5
order by salary desc
Is This Answer Correct ? | 3 Yes | 22 No |
Answer / mohammad murtuza ali
select * from SALARY where where rowno<6 and empname like
empname
Is This Answer Correct ? | 2 Yes | 29 No |
Answer / sujith
select * from test_sujith where rownum < 6 order by item3 desc
Is This Answer Correct ? | 2 Yes | 31 No |
what is the difference between char_length and length? : Sql dba
what is view? : Sql dba
What are the sql versions?
What is sql in oracle?
What are the parameter modes supported by pl/sql?
What is join view in sql?
What are sql procedures?
Is it possible to access the current value in a session before accessing next value?
What is sql character function?
What are database links used for?
What is before and after trigger?
Which sql statement is used to delete data from a database?