how to select second mauximum value in a given table under salary column
Answer Posted / jai
SELECT MAX(SALARY) FROM EMPLOYEE
WHERE SALARY NOT IN(SELECT MAX(SALARY) FROM EMPLOYEE)
| Is This Answer Correct ? | 27 Yes | 2 No |
Post New Answer View All Answers
What is materialized view in Oracle?
How to use "startup" command to start default instance?
How to pass a parameter to a cursor in oracle?
What is the usage of save points in oracle database?
Can a formula column referred to columns in higher group ?
Is truncate autocommit in oracle?
How to change program global area (pga) in oracle?
How can we find out the duplicate values in an oracle table?
What happens to the current transaction if the session is ended?
How to see the table columns used in an index?
Why do you create or replace procedures rather that drop and recreate.
How to use values from other tables in update statements using oracle?
How to store pictures on to the database?
How to create a table index?
 What are the oracle DML commands possible through an update strategy?