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
A "rollback" only works if you used transactions. That way you can group queries together and undo all queries if only one of them fails.
But if you already committed the transaction (or used a regular DELETE-query), the only way of getting your data back is to recover it from a previously made backup.