1.delete from tablea where col1 = '1';insert into tablea select 1
2.delete from tablea where col1 = '2';insert into tablea select 2
3.delete from tablea where col1 = '3';insert into tablea select 3
3条语句并行执行时,会出现数据丢失问题,新插入的数据不全
1.delete from tablea where col1 = '1';insert into tablea select 1
2.delete from tablea where col1 = '2';insert into tablea select 2
3.delete from tablea where col1 = '3';insert into tablea select 3
3条语句并行执行时,会出现数据丢失问题,新插入的数据不全
您好,需要补充几个信息:
建议:
1.2 的问题可能不太好跟了,咱们这个是测试还是生产环境呢?方便的话看看能否升级到2.0.13或者2.1.5上呢。