All changes made by a transaction are undone by
-
COMMIT
-
DROP
-
ROLLBACK
-
SAVEPOINT
C
Correct answer
Explanation
ROLLBACK is the SQL command that undoes all changes made during the current transaction, restoring the database to its state before the transaction began. COMMIT permanently saves changes, while DROP deletes database objects and SAVEPOINT marks intermediate points within a transaction.