Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MySQL rollback on the MyISAM engine

Tags:

mysql

myisam

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?

like image 866
Bharanikumar Avatar asked Aug 04 '10 10:08

Bharanikumar


1 Answers

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

like image 107
three-cups Avatar answered Sep 20 '22 20:09

three-cups