sqlserver nolock
时间: 2023-11-10 15:46:11 浏览: 125
SQL Server的WITH (NOLOCK)
5星 · 资源好评率100%
SQL Server NOLOCK is a locking hint that can be used to specify that a query should be able to read data from tables that are currently being modified by other transactions. It allows read operations to proceed without waiting for the locks to be released by the modifying transactions, which can improve performance in certain situations. However, it may also introduce inconsistencies and data inaccuracies, so it should be used with caution.
阅读全文