Tutorial Series MySQL series: Basic concepts of MySQL relational database Note: Some of these parameters can be modified at runtime and will take effect immediately; some parameters cannot be modified and can only take effect by modifying the configuration file and restarting the server program; some parameters are global and cannot be changed; some can provide separate (session) settings for each user 1. Server Options
2. Server system variablesServer variables are divided into dynamic variables and non-dynamic variables. Dynamic variables can be modified without restarting the server. Server variables are divided into global variables and session variables. Modification of global variables affects users who log in later; session variables only affect the current session and become invalid after exiting.
Modify global variables: only valid for newly created sessions after modification; invalid for already established sessions
Modify the session variables:
3. Server Status VariablesView status variables (read-only): variables used to save mysqld running statistics, cannot be changed
Refer to the official documentation: https://dev.mysql.com/doc/refman/5.7/en/mysqld-option-tables.html https://mariadb.com/kb/en/library/full-list-of-mariadb-options-system-and-status-variables SQL_MODE sql_mode is both an option and a variable. Setting it can perform some constraint checking tasks. It can be set globally or for the current session.
Refer to the official documentation: https://mariadb.com/kb/en/library/sql-mode This concludes the article on MySQL server variables in the eighth series. For more information on MySQL server variables, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Common rule priority issues of Nginx location
In desperation, I suddenly thought, how is the Sin...
This article shares the specific code for JavaScr...
Table of contents 1. Overview 1.1 Creating a func...
Overview The cloud platform customer's server...
Install Install ts command globally npm install -...
1. Install dependency packages [root@localhost ~]...
Today I will introduce how to enable the Linux su...
In MySQL, you can use the REVOKE statement to rem...
Table of contents 1. props/$emit Introduction Cod...
Recently, we have been capturing SQL online for o...
If there is an <input type="image">...
Introduction: AD is the abbreviation of Active Di...
This article shares the specific code of js to re...
Table of contents Installation-free version of My...
1. Summary of location usage Location can locate ...