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
Explain the uses of control file.
How do you write a subquery?
What is user in sql?
What is the benefit of foreign key?
Is oracle and sql same?
what is online transaction processing (oltp)? : Sql dba
What are string functions in sql?
how many sql ddl commands are supported by 'mysql'? : Sql dba
What does pragma mean?
What is sql used for?
Explain the working of primary key?
What is the difference between a subquery and a join?
Do foreign keys improve performance?
How to change a value of the field ‘salary’ as 7500 for an employee_name ‘john’ in a table employee_details?
What is difference between sql and mysql?