How to Remove the 3rd highest salary person record from
table?
Answer Posted / khan
DELETE FROM
(SELECT EMP_ID, SALARY, DENSE_RANK() OVER (ORDER BY SALARY DESC) AS CNT FROM EMPLOYEE)
WHERE CNT = 3;
| Is This Answer Correct ? | 9 Yes | 5 No |
Post New Answer View All Answers
What are the major difference between truncate and delete?
How to display row numbers with the records?
Can you drop an index associated with a unique or primary key constraint?
Point out the difference between user tables and data dictionary?
How do I call oracle stored procedures that take no parameters?
What is the difference between PFILE and SPFILE in Oracle?
How many types of table in Oracle?
how do we code triggers , store procedure , Performance tuning and indexing in a Java Project? Pls kindly get me the perfect answer with the code for each....thank you in advance............pls any body kindly help me soon as possible....
How to speed up webrick?
List the parts of a database trigger.
How to check your oracle database 10g xe installation?
How to create a table in a specific tablespace?
What is tns name?
What privilege is needed for a user to insert rows to tables in another schema?
I have a database backup file in .db (ext) form how to conver it into .dmp (ext.) for oracle database