Which SQL command is used to permanently save transaction changes in a database?
- SAVE
- COMMIT
- STORE
- FINALIZE
Answer: COMMIT
COMMIT permanently saves all changes made during a transaction to the database. ROLLBACK undoes uncommitted changes. Transactions follow ACID properties (Atomicity, Consistency, Isolation, Durability). Proper use of COMMIT/ROLLBACK ensures data integrity in multi-user database environments.