mysql多线程写入出现脏数据(重复数据)问题?
mysql 多线程写入,会出现脏数据.mysql多线程写入出现脏数据(重复数据)问题?
- 第一方法:
在要插入的表中增加唯一索引,就会防止插入多条相同的数据 - 第二方法:
使用 insert .... where not exists .... 语句 - 例如:
insert into cash_out(user_id, state) select * from ( select 173153, 0 ) AS tmp where not exists ( select * from cash_out where user_id=173153 and state=0) limit 1;