0

如果我的连接允许脏读,我是否可能会从同一行的多个字段中得到不一致的结果?例子:

连接1:

Update table1 set col1 = 1, col2 = 1 where primarykey = 1
Update table2 set col1 = 2, col2 = 2 where primarykey = 1

连接2:

select col1, col2 from table1 where primarykey = 1

连接 2 是否有可能看到 col1 和 col2 的值不相等?例如, col1=1 和 col2=2 ,或者, col1=2 和 col2=1

4

0 回答 0