Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想我遇到了一些与并发插入有关的问题,所以我想知道这样的并发插入语句是否 -
insert into table1 (field1,field2,field3) Values (A,B,C); insert into table1 (field1,field2,field3) Values (1,2,3);
可能会导致像
A B 3
第一个插入语句中的 A 和 B 以及第二个插入语句中的 3。我的表正在使用 InnoDB 存储顺便说一句。
答案是不。插入和更新通常会锁定它们正在操作的表/行,这样就不会发生。