please look this code:
begin tran
insert table1 ....
update table1 ....
select * from table1
rollback tran
the result of select is right.but can I always believe this
result?
you know when issue the select, the data still not stored into the database. so from where the select get the right data? can this data always right?
thanks a lot.
begin tran
insert table1 ....
update table1 ....
select * from table1
rollback tran
the result of select is right.but can I always believe this
result?
you know when issue the select, the data still not stored into the database. so from where the select get the right data? can this data always right?
thanks a lot.