这个orcal 语句转换SQl Server2008
select content from NNCREDIT_VIDEONEWS where oid='12' for update
------解决思路----------------------
select content from NNCREDIT_VIDEONEWS WITH(UPDLOCK) where oid='12'
------解决思路----------------------
WITH(UPDLOCK,HOLDLOCK)--可加上HOLDLOCK持续锁,在事务提交时才释放