The statements listed in this section (and any synonyms for them)
      implicitly end any transaction active in the current session, as
      if you had done a COMMIT before
      executing the statement.
    
Most of these statements also cause an implicit commit after executing. The intent is to handle each such statement in its own special transaction. Transaction-control and locking statements are exceptions: If an implicit commit occurs before execution, another does not occur after.
- Data definition language (DDL) statements that define or modify database objects. - ALTER EVENT,- ALTER FUNCTION,- ALTER PROCEDURE,- ALTER SERVER,- ALTER TABLE,- ALTER TABLESPACE,- ALTER VIEW,- CREATE DATABASE,- CREATE EVENT,- CREATE FUNCTION,- CREATE INDEX,- CREATE PROCEDURE,- CREATE ROLE,- CREATE SERVER,- CREATE SPATIAL REFERENCE SYSTEM,- CREATE TABLE,- CREATE TABLESPACE,- CREATE TRIGGER,- CREATE VIEW,- DROP DATABASE,- DROP EVENT,- DROP FUNCTION,- DROP INDEX,- DROP PROCEDURE,- DROP ROLE,- DROP SERVER,- DROP SPATIAL REFERENCE SYSTEM,- DROP TABLE,- DROP TABLESPACE,- DROP TRIGGER,- DROP VIEW,- INSTALL PLUGIN,- RENAME TABLE,- TRUNCATE TABLE,- UNINSTALL PLUGIN.- CREATE TABLEand- DROP TABLEstatements do not commit a transaction if the- TEMPORARYkeyword is used. (This does not apply to other operations on temporary tables such as- ALTER TABLEand- CREATE INDEX, which do cause a commit.) However, although no implicit commit occurs, neither can the statement be rolled back, which means that the use of such statements causes transactional atomicity to be violated. For example, if you use- CREATE TEMPORARY TABLEand then roll back the transaction, the table remains in existence.- The - CREATE TABLEstatement in- InnoDBis processed as a single transaction. This means that a- ROLLBACKfrom the user does not undo- CREATE TABLEstatements the user made during that transaction.- CREATE TABLE ... SELECTcauses an implicit commit before and after the statement is executed when you are creating nontemporary tables. (No commit occurs for- CREATE TEMPORARY TABLE ... SELECT.)
- Statements that implicitly use or modify tables in the - mysqldatabase.- ALTER USER,- CREATE USER,- DROP USER,- GRANT,- RENAME USER,- REVOKE,- SET PASSWORD.
- Transaction-control and locking statements. - BEGIN,- LOCK TABLES,- SET autocommit = 1(if the value is not already 1),- START TRANSACTION,- UNLOCK TABLES.- UNLOCK TABLEScommits a transaction only if any tables currently have been locked with- LOCK TABLESto acquire nontransactional table locks. A commit does not occur for- UNLOCK TABLESfollowing- FLUSH TABLES WITH READ LOCKbecause the latter statement does not acquire table-level locks.- Transactions cannot be nested. This is a consequence of the implicit commit performed for any current transaction when you issue a - START TRANSACTIONstatement or one of its synonyms.- Statements that cause an implicit commit cannot be used in an XA transaction while the transaction is in an - ACTIVEstate.- The - BEGINstatement differs from the use of the- BEGINkeyword that starts a- BEGIN ... ENDcompound statement. The latter does not cause an implicit commit. See Section 15.6.1, “BEGIN ... END Compound Statement”.
- Data loading statements. - LOAD DATA.- LOAD DATAcauses an implicit commit only for tables using the- NDBstorage engine.
- Administrative statements. - ANALYZE TABLE,- CACHE INDEX,- CHECK TABLE,- FLUSH,- LOAD INDEX INTO CACHE,- OPTIMIZE TABLE,- REPAIR TABLE,- RESET(but not- RESET PERSIST).
- Replication control statements. - START REPLICA,- STOP REPLICA,- RESET REPLICA,- CHANGE REPLICATION SOURCE TO.