Created
February 26, 2021 15:57
-
-
Save goyuninfo/cc3b14bda59be81f1995200ab25aef89 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mysql > SET TRANSACTION ISOLATION LEVEL READ COMMITTED; | |
Query OK, 0 rows affected | |
Time: 0.001s | |
mysql > SET TRANSACTION ISOLATION LEVEL SERIALIZABLE; | |
Query OK, 0 rows affected | |
Time: 0.001s | |
mysql > SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED; | |
Query OK, 0 rows affected | |
Time: 0.001s | |
mysql > SET TRANSACTION ISOLATION LEVEL REPEATABLE READ; | |
Query OK, 0 rows affected | |
Time: 0.001s | |
mysql > |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment