SQL Server NOLOCK keyword

后端 未结 2 875
闹比i
闹比i 2021-01-24 02:13

When a SQL client issues the following command:

select * into tbl2
FROM tbl1 (nolock)
WHERE DateCreated < \'2009/01/01\'

does it mean that <

2条回答
  •  再見小時候
    2021-01-24 02:34

    Both. And it will also read uncommitted data from other [uncommitted] transactions (if any).

提交回复
热议问题