MySQL sets up independent writing separation. If you write the following in the code, problems may occur //Enter first this.insert(obj); // Query again Object res = this.selectById(obj.getId()); res: null; A pitfall online: after doing read-write separation, there is a scenario where you want to reuse the method and only pass in an ID. You can directly find an object in the database for subsequent processing. As a result, you can't find it. Various transaction isolation levels have been checked. Finally, it is found that it is a problem of read-write separation, so change the idea to implement it. Additional knowledge: MySQL INSERT insertion condition judgment: insert if it does not exist We often need to perform batch inserts in SQL, requiring: if the record does not exist, insert it; if it does exist, do not insert it. How about using an INSERT statement? For ordinary INSERT insertion, if we want to ensure that no duplicate records are inserted, we can only create a unique constraint for a certain field; Is there a solution that does not create a unique constraint and can be achieved with just one INSERT INTO statement? Answer: Use INSERT INTO IF EXISTS. The specific syntax is as follows INSERT INTO table(field1, field2, fieldn) SELECT 'field1', 'field2', 'fieldn' FROM DUAL WHERE NOT EXISTS(SELECT field FROM table WHERE field = ?) example: INSERT INTO a (order_id, operator, oper_date, memo) SELECT '3', 'onion3', '2017-11-28', 'Test 3' from DUAL where not exists(select order_id from a where operator='onion3' and memo = '测试3'); The above article on solving the problem of not being able to select data after insert due to MySQL read-write separation is all the content that the editor shares with you. I hope it can give you a reference, and I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Implementing a simple whack-a-mole game in JavaScript
>>: After docker run, the status is always Exited
Preface This article lists several common, practi...
In Linux, when a file is created, the owner of th...
What is Redis Cluster Redis cluster is a distribu...
Today I will introduce two HTML tags that I don’t...
Due to the company's business requirements, t...
This article shares the specific code for React t...
There are two tables, and the records in table A ...
First download the dependencies yarn add sass-loa...
selinux ( Security-Enhanced Linux) is a Linux ker...
First of all, we know that this effect should be ...
There is a requirement to realize the shaking eff...
As front-end engineers, IE must be familiar to us...
Table of contents Preface 1. Extract data 2. Alia...
Table of contents Preface Optional Chaining Nulli...
This article shares the specific code for JavaScr...