MySQL rollback on the MyISAM engine

岁酱吖の 提交于 2019-12-10 17:15:34

问题


By mistake I ran the update query. This update made my table all rows values as o.

Is it possible to rollback the table values?


回答1:


MyISAM does not support transactions. Therefore, every individual statement runs as if it is enclosed by a transaction. You cannot roll it back.




回答2:


If you have no backup, and didn't run your update in a transaction, your data is gone for good.




回答3:


MYISAM dont support transaction support..

That's the reason best you should be using INNODB..



来源:https://stackoverflow.com/questions/3404467/mysql-rollback-on-the-myisam-engine

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!