5

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?

David
  • 4,786
  • 11
  • 52
  • 80
Bharanikumar
  • 25,457
  • 50
  • 131
  • 201

3 Answers3

11

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

three-cups
  • 4,375
  • 3
  • 31
  • 41
3

MYISAM dont support transaction support..

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

Kdecom
  • 728
  • 6
  • 6
1

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

Mau
  • 14,234
  • 2
  • 31
  • 52