YMatrix
Quick Start
Connecting
Benchmarks
Deployment
Data Usage
Manage Clusters
Upgrade
Global Maintenance
Expansion
Monitoring
Security
Best Practice
Technical Principles
Data Type
Storage Engine
Execution Engine
Streaming Engine(Domino)
MARS3 Index
Extension
Advanced Features
Advanced Query
Federal Query
Grafana
Backup and Restore
Disaster Recovery
Guide
Performance Tuning
Troubleshooting
Tools
Configuration Parameters
SQL Reference
Submit the current transaction.
COMMIT [WORK | TRANSACTION]
COMMIT commits the current transaction. All changes made by the firm are visible to others and are guaranteed to be persistent if a crash occurs.
WORK
TRANSACTION
Use ROLLBACK to abort the transaction.
If not inside the transaction, issuing COMMIT will not cause any harm, but will trigger a warning message.
Submit the current transaction and make all changes permanent:
COMMIT;
The SQL standard specifies only two forms: COMMIT and COMMIT WORK. Otherwise, this command fully meets the requirements.