Collections:
What Is a Transaction - Unit of Work in MySQL
What Is a Transaction in MySQL?
✍: FYIcenter.com
A transaction is a logical unit of work requested by a user to be applied to the database objects. MySQL server introduces the transaction concept to allow users to group one or more SQL statements into a single transaction, so that the effects of all the SQL statements in a transaction can be either all committed (applied to the database) or all rolled back (undone from the database).
The transaction concept only works on tables that use transaction-safe storage engines, like InnoDB and BDB. For transaction-unsafe storage engines, like MyISAM, transaction will be ignored.
⇒ Ways to Start a New Transaction in MySQL
⇐ Transaction Management: Commit or Rollback in MySQL
2017-08-03, 2938🔥, 0💬
Popular Posts:
How To Break Query Output into Pages in MySQL? If you have a query that returns hundreds of rows, an...
How To Set Up SQL*Plus Output Format in Oracle? If you want to practice SQL statements with SQL*Plus...
How To Convert Binary Strings into Integers in SQL Server Transact-SQL? Binary strings and integers ...
How Fixed Length Strings Are Truncated and Padded in SQL Server Transact-SQL? When the length of the...
How To Get the Definition of a Stored Procedure Back in SQL Server Transact-SQL? If you want get the...