| title | START TRANSACTION | TiDB SQL Statement Reference | ||
|---|---|---|---|
| summary | An overview of the usage of START TRANSACTION for the TiDB database. | ||
| aliases |
|
This statement starts a new transaction inside of TiDB. It is similar to the statement BEGIN.
In the absence of a START TRANSACTION statement, every statement will by default autocommit in its own transaction. This behavior ensures MySQL compatibility.
BeginTransactionStmt:
mysql> CREATE TABLE t1 (a int NOT NULL PRIMARY KEY);
Query OK, 0 rows affected (0.12 sec)
mysql> START TRANSACTION;
Query OK, 0 rows affected (0.00 sec)
mysql> INSERT INTO t1 VALUES (1);
Query OK, 1 row affected (0.00 sec)
mysql> COMMIT;
Query OK, 0 rows affected (0.01 sec)This statement is understood to be partly compatible with MySQL.
START TRANSACTIONis equivalent to MySQL’sSTART TRANSACTION WITH CONSISTENT SNAPSHOT, that is, afterSTART TRANSACTION, aSELECTstatement (notSELECT FOR UPDATE) is executed to read data from any table in InnoDB.READ ONLYand its extended options are only syntactically compatible, and its effect is equivalent toSTART TRANSACTION.
Any compatibility differences should be reported via an issue on GitHub.
