You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
insert into on duplicate key update写法
delete from where
操作两个账号的数据时,insert语句可能时二阶段加锁了,会出现了这个死锁特征:
delete WAITING FOR lock_mode X
insert WAITING FOR lock_mode X locks gap before rec insert intention, HOLDS lock_mode X locks rec but not gap
请问您有对insert into on duplicate key update加锁解释的文章吗
The text was updated successfully, but these errors were encountered:
业务表有自增id主键和组合唯一键
insert into on duplicate key update写法
delete from where
操作两个账号的数据时,insert语句可能时二阶段加锁了,会出现了这个死锁特征:
delete WAITING FOR lock_mode X
insert WAITING FOR lock_mode X locks gap before rec insert intention, HOLDS lock_mode X locks rec but not gap
请问您有对insert into on duplicate key update加锁解释的文章吗
The text was updated successfully, but these errors were encountered: