--用排它锁--设tb(A,B,C)
create table #tb(A varchar(2),B varchar(2),C varchar(2))
insert into #tb
select 'a1','b1','c1'
union all select 'a2','b2','c2'
union all select 'a3','b3','c3'--1)排它锁
--在第一个连接中执行以下语句
begin tran
   update #tb
   set A='aa'
   where B='b2'
   waitfor delay '00:00:3'  --等待3秒
commit tran--在第二个连接中执行以下语句
begin tran
   select * from #tb
   where B='b2'   
commit tran
--若同时执行上述两个语句,则select查询必须等待update执行完毕才能执行即要等待30秒