Answer by
knightmare (1231)
A ROLLBACK command will restore a database to how it appeared before the last COMMIT command. Say you insert 10 rows into a table, COMMIT, insert 20 rows into a table, and do a ROLLBACK. The 10 rows you first inserted will be there but the 20 other rows will not. ROLLBACK is good for testing among other things.