一开始不怎么理解乐观并发模式是什么。
这种模式可以在死锁问题上使用。
在sql中
select name from table with(nolock) where id=1
这样就是乐观并发模式。
SqlServer默认开启的是悲观并发模式
例如:
select name from table where id=1
时间: 2024-10-10 06:47:39
一开始不怎么理解乐观并发模式是什么。
这种模式可以在死锁问题上使用。
在sql中
select name from table with(nolock) where id=1
这样就是乐观并发模式。
SqlServer默认开启的是悲观并发模式
例如:
select name from table where id=1