_________ command makes the updates performed by the transaction permanent in the database?
- ROLLBACK
- COMMIT
- TRUNCATE
- DELETE
1 Answers
Answer:
2.COMMIT
Explanation:
The COMMIT statement is a transactional command used to end the current transaction and make all changes performed in the transaction permanent.
The ROLLBACK statement is a transactional command used to back out or cancels the current transaction changes and restores changed data in its previous state.
TRUNCATE and DELETE are not transactional commands.