问题描述:用户 A B同属于一个上级账户C 他们购买的商品不可重复
解决方案1:直接使用SQL语句 insert into tablename values(uname,ll) select('user1',101) from dual where not exists(select * from tablename where uname='user1')但是在使用中发现当2个多多个用户同时点击时候还是有一定的几率写入了重复数据。
解决方案2:使用mysql语法 replace into 来插入数据 再配置触发器 trigger tname after delete on tablename for each row来处理购买所消耗的金额回退,问题解决如下:当用户A 购买后 用户B同时也购买后者会获得购买的商品 前者的记录会被删除并把金额回退到前者的账户。