We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a5714b2 + 779a667 commit 6df9662Copy full SHA for 6df9662
docs/database/事务隔离级别(图文详解).md
@@ -69,7 +69,7 @@
69
| REPEATABLE-READ | × | × | √ |
70
| SERIALIZABLE | × | × | × |
71
72
-MySQL InnoDB 存储引擎的默认支持的隔离级别是 **REPEATABLE-READ(可重读)**。我们可以通过`SELECT @@tx_isolation;`命令来查看
+MySQL InnoDB 存储引擎的默认支持的隔离级别是 **REPEATABLE-READ(可重读)**。我们可以通过`SELECT @@tx_isolation;`命令来查看,MySQL 8.0 该命令改为`SELECT @@transaction_isolation;`
73
74
```sql
75
mysql> SELECT @@tx_isolation;
0 commit comments