0 votes
in Oracle by
What do the COMMIT and ROLLBACK statements in Oracle SQL do?

1 Answer

0 votes
by
The COMMIT statement saves all the changes made in a transaction to the database, making them permanent. The ROLLBACK statement undoes the changes in the transaction and reverts the database to its pre-transaction state.
...