1. Database transactions will reduce database performance. In order to ensure data consistency and isolation, transactions need to lock transactions. 2. If other transactions need to operate this part of data, they must wait for the last transaction to end (commit, rollback). Examplescreate table acct( acct_no varchar(32), acct_name varchar(32), balance decimal(16,2) ); insert into acct values ('0001','Jerry', 1000), ('0002','Tom', 2000); start transaction; -- Start transaction update acct set balance = balance - 100 where acct_no = '0001'; -- Simulate the deductor update acct set balance = balance + 100 where acct_no = '0002'; -- Simulate the payee commit; -- Transaction commit rollback; -- Transaction rollback Knowledge point expansion: Transactions
Big BusinessTransactions that take a long time to run and operate on a large amount of data
How to handle big transactions:
This concludes this article on the impact of MySQL transactions on efficiency. For more information on the impact of MySQL transactions on efficiency, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Vue3+Vite+TS implements secondary encapsulation of element-plus business components sfasga
>>: HTML table layout example explanation
Table of contents 1. Introduction 2. Deployment E...
Preface In MySQL, we can use the EXPLAIN command ...
MySQL supports hash and btree indexes. InnoDB and...
This article introduces in detail some of the tech...
1. Application of multimedia in HTML_falsh animat...
Type yum install mysql-server Press Y to continue...
1 Background JDK1.8-u181 and Tomcat8.5.53 were in...
For example: <link rel="stylesheet" h...
Currently implemented are basic usage, clearable,...
1. Set the parent container to a table and the ch...
Table of contents Product Requirements Ideas Prob...
environment: MAC_OS 10.12 Python 3.6 mysql 5.7.25...
I encountered a little problem when configuring t...
Table of contents 1 Test Environment 1.1 Server H...
This article shares the specific code of JavaScri...