Can I ease use a rewind statement, like if I regret a deletion of a record. How do I write it then?
Thanks / Henrik
Using a tools that implement transaction (postgresql by example).
begin; delete from tablename where field='values'; rollback;
Will do nothing: rollback means reset the database to the state it was before the begin statement.