Collections:
Read Consistency Support in MySQL in MySQL
How Does MySQL Handle Read Consistency in MySQL?
✍: FYIcenter.com
Read consistency is a concept that describes how consistent the output will be on two subsequent read operations. A read operation is usually a stand alone SELECT statement or a SELECT subquery in a parent statement.
A database server can support up to 3 levels of read consistency:
By default, MySQL server offers the highest level, Transaction-Level Read Consistency, on tables with transaction-safe storage engines, like InnoDB.
⇒ Transaction Isolation Levels in MySQL
⇐ Transaction Roll Back when Session Killed in MySQL
2017-08-03, 2686🔥, 0💬
Popular Posts:
How To Format Time Zone in +/-hh:mm Format in SQL Server Transact-SQL? From the previous tutorial, y...
How To Convert Numeric Values to Character Strings in MySQL? You can convert numeric values to chara...
How To Start Instance with a Minimal Initialization Parameter File in Oracle? The sample initializat...
How to set database to be READ_ONLY in SQL Server? Databases in SQL Server have two update options: ...
How to check if two JSON values have overlaps using the JSON_OVERLAPS() function? JSON_OVERLAPS(json...