请教大神,SQL SERVER中,如何做到在语句1执行的时候,让语句2等待。
--语句1:
begin tran
if not exists(select 1 from UserInfo where id=14285 and activityPoint='1')
Begin
waitfor delay '00:00:10'; --等待30秒
update UserInfo set activityPoint='2' where id=14285
end
commit tran
--语句2:
update UserInfo set activityPoint='1' where id=14285
- 6 回答
- 0 关注
- 592 浏览
添加回答
举报
0/150
提交
取消