Skip to Main Content

SQL Developer

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How to undo an update query in sql developer?

MANOJ PRABHAKARMay 13 2019 — edited May 13 2019

How to undo an update query in sql developer?

I Tried this Query,But now i want to undo it . How to do that?

/.Change salary of employee 115 to 8000 if the existing salary is less than 6000.*/

UPDATE EMPLOYEES SET SALARY = 8000 WHERE EMPLOYEE_ID = 115 AND SALARY < 6000;

This post has been answered by thatJeffSmith-Oracle on May 13 2019
Jump to Answer
Comments
Post Details
Added on May 13 2019
10 comments
9,935 views