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
Use the BEGIN TRANSACTION command before starting queries. So that you can ROLLBACK things at any point of time.
BEGIN TRANSACTION
ROLLBACK
FOR EXAMPLE: