程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> SqlServer2005 >> SQLServer2005 的查詢獨占模擬

SQLServer2005 的查詢獨占模擬

編輯:SqlServer2005
對於應用來說,我並不提倡人為給記錄加鎖,這樣會惹來很多麻煩,況且鎖並不能解決所有問題,如果你有這方面好的經驗我們可以進一步交流。
對於應用來說,我並不提倡人為給記錄加鎖,這樣會惹來很多麻煩,況且鎖並不能解決所有問題,如果你有這方面好的經驗我們可以進一步交流。
復制代碼 代碼如下:
set nocount on
use tempdb
go
if (object_id ('tb' ) is not null )
drop table tb
go
create table tb (id int identity (1 , 1 ), name varchar (10 ), tag int default 0 )
insert into tb (name ) select 'a'
insert into tb (name ) select 'b'
insert into tb (name ) select 'c'
insert into tb (name ) select 'd'
insert into tb (name ) select 'e'
go
update top (2 ) tb with (rowlock , readpast ) set tag = 1 output inserted . id , inserted . name where tag = 0
go
update top (2 ) tb with (rowlock , readpast ) set tag = 1 output inserted . id , inserted . name where tag = 0
go
update top (2 ) tb with (rowlock , readpast ) set tag = 1 output inserted . id , inserted . name where tag = 0
go
set nocount off
/*
id name
----------- ----------
1 a
2 b
id name
----------- ----------
3 c
4 d
id name
----------- ----------
5 e
*/

如果你有更好的建議,我們不妨探討一下。
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved