How to Remove the 3rd highest salary person record from
table?
Answer Posted / avnish srivastava-test engg fc
select max(salary)from employees
where
salary < (select max(salary)from employees where
salary < (select max(salary) from employees))
| Is This Answer Correct ? | 10 Yes | 11 No |
Post New Answer View All Answers
Is there a function to split a string in plsql?
What are the uses of synonyms?
Describe varray?
How to manage transaction isolation level?
What is the implicit cursor in oracle?
How to add a new column to an existing table with a default value?
List out the difference between commit, rollback, and savepoint?
How to compare dates in oracle sql?
What happens if the update subquery returns multiple rows?
Explain an exception and its types?
what is normalisation?what are its uses?
How to insert a new row into a table in oracle?
Explain the features of oracle?
What view(s) do you use to associate a users SQLPLUS session with his o/s process?
Explain the function of optimizer in oracle?