Write a query to find five highest salaries from EMP table.
(there is a column SALARY)
Answer Posted / sankarapandian
select top 5 salary from employee
order by salary desc
| Is This Answer Correct ? | 17 Yes | 8 No |
Post New Answer View All Answers
How many parts of a pl sql block are optional?
What is the difference between sql and mysql?
What is use of trigger?
what is sub-query? : Transact sql
Is vs as in pl sql?
Explain the insert into statements in sql?
What is clause?
Why do we need unique key in a table?
what is msql? : Sql dba
Why we use sql profiler?
Can we perform dml in function?
What does select top 1 do in sql?
How do I write a sql query in pgadmin 4?
how do you control the max size of a heap table? : Sql dba
How do I debug a stored procedure?