MySQL rollback on the MyISAM engine

Bharanikumar picture Bharanikumar · Aug 4, 2010 · Viewed 7.1k times · Source

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?

Answer

three-cups picture three-cups · Mar 10, 2011

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