Start a transaction or get started

I do not know what is better to use Start Transaction OR Begin Work, and what is the difference.

+4
source share
1 answer

From the MySQL manual:

BEGIN and BEGIN WORK supported as START TRANSACTION aliases for starting a transaction. START TRANSACTION is the standard SQL syntax and is the recommended way to start an ad-hoc transaction.

+11
source

Source: https://habr.com/ru/post/1410784/


All Articles