I accidentally deleted some huge number of rows from a table...
How can I roll it back?
I executed the query using PuTTY.
I\'ll be grateful if any of
In MySQL:
start transaction; savepoint sp1; delete from customer where ID=1; savepoint sp2; delete from customer where ID=2; rollback to sp2; rollback to sp1;