刚才写错了,更新一下
关于使用FOR UPDATE引起阻塞的问题请教 
我有一个存储过程完成以下操作1、
select id,col1,con2 into v_id,v_col1,v_col2 from table1 where rownum=1 for update2、update table1 set v_col1 = 1 where id=v_id
commit;这种语句在什么情况下会导致数据库阻塞?