version 11
START [TRANSACTION]
Description
La commande START démarre une transaction. Si cette commande est exécutée alors qu'une transaction est déjà en cours, elle démarre une sous-transaction.
Le mot-clé TRANSACTION est facultatif.
Exemple
Cet exemple effectue une sélection à l'intérieur d'une transaction :
START TRANSACTION SELECT * FROM suppliers WHERE supplier_name LIKE '%bob%'; COMMIT TRANSACTION;
Référence