An implicit transaction is a single SQL statement transaction that doesn't use BEGIN
/ COMMIT
block and is committed automatically.
An explicit transaction is using a BEGIN
/ COMMIT
block and may contain one or multiple SQL statements.
An implicit transaction is a single SQL statement transaction that doesn't use BEGIN
/ COMMIT
block and is committed automatically.
An explicit transaction is using a BEGIN
/ COMMIT
block and may contain one or multiple SQL statements.