不可重复读取 meaning in English
nonrepeatable read
Examples
- Data can be changed by other transactions between individual statements within the current transaction , resulting in nonrepeatable reads or phantom data
其他事务可以在当前事务的各个语句之间更改数据,从而产生不可重复读取和幻像数据。 - Most of them support at least two : " read committed " default and " serializable . " use " read committed " when the non - repeatable reads should allow modifications by one transaction to be visible to another between queries ; use phantom reads for modifications made by another transaction to become visible while a query runs
当不可重复读取应该允许在多个查询之间由一个事务作出的修改对于另一个事务可见时,请使用“读取提交” ;要使由另一个事务作出的修改在一个查询运行时成为可见的,请使用幻象读取( phantom read ) 。