I am working on localhost LAN network
Accidentally deleted selected rows from mysql table
i wanted to execute
select * from mytable where remark='C'
but accidentally executed
delete from mytable where remark='C'
because my previous command was delete command
all my updated records got deleted
Please help if there is any method to recover this data
delete is DML command
I read that it could be recovered
in foxpro no deleted data is permanently deleted
until we use pack command
we can also recover deleted data by
recall all command before pack any time
please help if any equivalent method for the same in mysql
i am using xampp on windows8
Accidentally deleted selected rows from mysql table
i wanted to execute
select * from mytable where remark='C'
but accidentally executed
delete from mytable where remark='C'
because my previous command was delete command
all my updated records got deleted
Please help if there is any method to recover this data
delete is DML command
I read that it could be recovered
in foxpro no deleted data is permanently deleted
until we use pack command
we can also recover deleted data by
recall all command before pack any time
please help if any equivalent method for the same in mysql
i am using xampp on windows8
Comment