A script accidentally deleted few rows from the database with the following query:
DELETE FROM that_table WHERE id IN (100, 101, 102) More rows have been added in the mean time. Is there a way for me to recover the three rows into the same table (or perhaps another database/table)? I do not want to restore the database as if this means I lose all data added/updated after that query. Hand entering the missing rows is an option.