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;