How can I roll back my last delete command in MySQL?

后端 未结 10 2140
臣服心动
臣服心动 2020-12-25 09:32

I accidentally deleted some huge number of rows from a table...

How can I roll it back?

I executed the query using PuTTY.

I\'ll be grateful if any of

10条回答
  •  [愿得一人]
    2020-12-25 10:19

    Rollback normally won't work on these delete functions and surely a backup only can save you.

    If there is no backup then there is no way to restore it as delete queries ran on PuTTY,Derby using .sql files are auto committed once you fire the delete query.

提交回复
热议问题