find out first highest salary?
Answer Posted / samir kumar sahoo
SELECT DISTINCT salary FROM (SELECT DISTINCT salary,ROWNUM
rn FROM employee ORDER BY salary desc) WHERE rn=1;
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
How to write text literals in oracle?
How to export data with a field delimiter?
What are the different windows events activated at runtime ?
How to insert a record into a table?
Why packages are used in oracle?
What is analyze command used for?
Can we protect our pl/sql source code?
How to define a cusotmer as a supplier in ORACLE R12
How oracle handles dead locks?
What privilege is needed for a user to create indexes in oracle?
What is the scope of a local variable?
How to load data through external tables?
How do we create privileges in oracle?
How to use subqueries with the in operator using oracle?
How to establish administrator authentication to the server?