考勤刷卡记录”表重复怎么办?
答:处理方法有几种:
①考勤数据分析时,可勾选“删除重复打卡记录”,可删掉当月的重复刷卡记录。
②如果是SQL数据库的一卡通,可以通过SQL语句删除。语句如下:
delete from Timerecords where id in
(select max(id) from Timerecords group by emp_id,sign_time having count(id)>1) --需重复多次执行才能删除干净。