回复 10楼 mywisdom88
上面有个问题,就是没记录的时候,应该可以增加的,因此,改为下面的,就可以了。红字部分text to insert_str noshow
if not exists(select * from (select top 1 * from #tmp order by 时间 desc)a where a.姓名=@nm and a.卡号= @kh and datediff("mi",a.时间,@dt)<5)
begin
insert into #tmp(姓名,卡号,时间) values(@nm,@kh,@dt)
select 1 as res
end
else
select 0 as res
endtext
?sqlexec(nhandle,insert_str,'sqltable')
if res=1
messagebox("插入成功")
else
messagebox("插入失败")
endif
[此贴子已经被作者于2016-5-15 20:54编辑过]