Example analysis of mysql variable usage [system variables, user variables]

Example analysis of mysql variable usage [system variables, user variables]

This article uses examples to illustrate the usage of MySQL variables. Share with you for your reference, the details are as follows:

In this article:

  • System variables
  • User variables
    • Local variables

Release date: 2018-04-18


System variables:

  • System variables are variables that have been defined in advance by the system.
  • System variables generally have special meanings. For example, some variables represent character sets, and some variables represent certain MySQL file locations.
  • System variables include session-level variables (variables that take effect when the session is connected, such as names), and global variables (variables that are always effective). [Global variables and session variables in the system actually use a set of variables. The difference is that session variables are only effective when the session is connected. 】
    • Assignment of session variables: set variable name = value; [such as the commonly used set names = "utf8";] or set @@variable name = value
    • Assignment of global variables: set global variable name = value;

View system variables:

  • show variables;

Calling system variables:

  • select @@variable name;

User variables:

  • User variables are variables defined by the user.
  • In order to distinguish between system variables and user-defined variables, the system stipulates that user-defined variables must use an @ symbol
  • The variables are defined as follows:
    • set @變量名=1
    • select @variable name:=value;
    • select value into @variable name;
  • User variables can be used directly without being declared, but the default value is null.
  • User variables are session-level variables and are only valid during the current connection.

Local variables:

  • Since local variables are user-defined, they can be considered as user variables [but they are different, you don’t need to use @ in local variables]
  • Local variables are generally used in SQL statement blocks, such as stored procedure blocks, trigger blocks, etc.
  • How to define local variables:
    • First, use declare to declare a local variable. The optional default can be followed by a default value for the variable: [ This is a very important step, otherwise it will be set as a user variable] [Note: the variable declaration statement must be before other statements such as select statements]
      • Example: declare myq int;
      • Example: declare myq int default 666;
    • Set the value of the variable:
      • set variable name = value;
    • Get the value of a variable:
      • select variable name;
create procedure myset()
begin 
 declare mya int;
 declare myq int default 777;
 select mya,myq;
 set myq=6;
 set mya=666;
 select mya,myq;
end;

call myset();

Replenish:

  • Some people may find that directly setting variable name = value can also define "user variables"; but this is a bad behavior [this behavior ignores the function of each variable], because you don't know whether it will conflict with system variables, so it is best to add @ to user variables .
  • Because = is used in many places to determine whether it is equal, in order to avoid ambiguity, you can also use := to assign values image
  • [ Although some other assignment methods are given above, it seems that some of them are not universal, such as := which is only used for user variables, so use them with caution ].

Readers who are interested in more MySQL-related content can check out the following topics: "Summary of MySQL Common Functions", "Summary of MySQL Log Operation Skills", "Summary of MySQL Transaction Operation Skills", "Summary of MySQL Stored Procedure Skills" and "Summary of MySQL Database Lock-Related Skills".

I hope this article will be helpful to everyone's MySQL database design.

You may also be interested in:
  • Example of writing lazy UNION in MySQL using custom variables
  • Detailed explanation of mysql user variables and set statement examples
  • MySQL variable principles and application examples
  • Detailed explanation of MySQL startup options and system variables examples
  • How to create (CREATE PROCEDURE) and call (CALL) a MySQL stored procedure and how to create (DECLARE) and assign (SET) a variable
  • 15 important variables you must know about MySQL performance tuning (summary)
  • MySQL 8.0.12 installation and environment variable configuration tutorial under win10
  • Detailed explanation of two methods for setting global variables and session variables in MySQL
  • MySQL 5.6.23 Installation and Configuration Environment Variables Tutorial
  • The concept and characteristics of MySQL custom variables

<<:  How to find identical files in Linux

>>:  Implementation example of scan code payment in vue project (with demo)

Recommend

Docker View JVM Memory Usage

1. Enter the host machine of the docker container...

How to use environment variables in nginx configuration file

Preface Nginx is an HTTP server designed for perf...

CenOS6.7 mysql 8.0.22 installation and configuration method graphic tutorial

CenOS6.7 installs MySQL8.0.22 (recommended collec...

Mac installation mysqlclient process analysis

Try installing via pip in a virtual environment: ...

Linux View File System Type Example Method

How to check the file system type of a partition ...

MySQL database case sensitivity issue

In MySQL, databases correspond to directories wit...

Learn how to use the supervisor watchdog in 3 minutes

Software and hardware environment centos7.6.1810 ...

Example explanation of alarm function in Linux

Introduction to Linux alarm function Above code: ...

JavaScript to achieve dynamic table effect

This article shares the specific code for JavaScr...

Linux server SSH cracking prevention method (recommended)

1. The Linux server configures /etc/hosts.deny to...

Interpreting MySQL client and server protocols

Table of contents MySQL Client/Server Protocol If...

MySQL Query Cache and Buffer Pool

1. Caches - Query Cache The following figure is p...

Introducing the code checking tool stylelint to share practical experience

Table of contents Preface text 1. Install styleli...

Navicat for MySQL 11 Registration Code\Activation Code Summary

Recommended reading: Navicat12.1 series cracking ...