请高手帮忙写一个判断插入记录重复的存储过程。
tableA表 记录 caseid (自增),carid varchar 卡号,state int (默认值为0),cmoney (金额)
存储过程为查询上表中的 top 1 条记录 ,并判断该条记录中的卡号当天能否有count(carid) 重复次数大于5,也就是一张卡每天只允许刷卡5次。
假如大于5 update tablea set state=-1 where caseid=xxx 否则 update tablea set state=1 where caseid=xxx
tableA表 记录 caseid (自增),carid varchar 卡号,state int (默认值为0),cmoney (金额)
存储过程为查询上表中的 top 1 条记录 ,并判断该条记录中的卡号当天能否有count(carid) 重复次数大于5,也就是一张卡每天只允许刷卡5次。
假如大于5 update tablea set state=-1 where caseid=xxx 否则 update tablea set state=1 where caseid=xxx
解决方案
50
可以使用触发器实现。