How to Remove the 3rd highest salary person record from
table?
Answer Posted / jainish
select max(salary)from employees
where
salary < (select max(salary)from employees where
salary < (select max(salary) from employees))
| Is This Answer Correct ? | 4 Yes | 5 No |
Post New Answer View All Answers
How to commit the current transaction in oracle?
How to define a sub function?
How translate command is different from replace?
How to execute the package in oracle?
How to create a server parameter file?
Can u please explain me the Discussion on Except ,using cast like type cast. Question in the context of difference between two tables
What is an oracle?
What is Reduced List of Values?
How to retrieve values from data fields in record variables?
What is a package in oracle?
How to get the Installed Oracle Version Information ?
Define the SGA and: How you would configure SGA for a mid-sized OLTP environment? What is involved in tuning the SGA?
How can I get column names from a table in oracle?
What happens to the current transaction if the session is killed?
Give syntax for SQL and ORACLE joins.