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?
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?
MyISAM does not support transactions. Therefore, every individual statement runs as if it is enclosed by a transaction. You cannot roll it back.
MYISAM dont support transaction support..
That's the reason best you should be using INNODB..
If you have no backup, and didn't run your update in a transaction, your data is gone for good.
© 2022 - 2024 — McMap. All rights reserved.