How to undo a query execution in phpmyadmin.
Any rollback functionality is there? any body knows the solution kindly help me?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If the statement is still running you can use
KILL QUERY <thread_id>.If the statement has completed but you have not yet committed the transaction you can use
ROLLBACK.If the statement has completed and the transaction is already committed (or you didn’t start a transaction) then restore the data from your most recent backup.
Also here are some tips advice in order to prevent this type of situation happening in the first place: