The concept and characteristics of MySQL custom variables

The concept and characteristics of MySQL custom variables

A MySQL custom value is a temporary container for storing values. As long as the connection to the server is active, the values ​​in the container can be saved and used. Custom variables can be set with a simple SET or SELECT statement, as follows:

SET @one := 1;
SET @min_actor := (SELECT MIN(actor_id) FROM sakila.actor);
SET @last_week := CURRENT_DATE-INTERNAL 1 WEEK;

After defining the variable, you can use it in SQL statements:

SELECT * FROM film WHERE created_date <= @last_week;

Although MySQL custom variables are very powerful, you also need to know that custom variables themselves have flaws, including:

  • Custom variables disable query caching.
  • It may not be used as an identifier with alternative semantics, such as a table or column name, or in a LIMIT clause.
  • Custom variables are based on a single connection and therefore cannot be used across connections.
  • If you use connection pools or persistent connections, custom variables will isolate your code from interactions. When this occurs, it may be a bug in your code or a bug in the connection pool, but it is possible.
  • In versions prior to MySQL 5.0, it is case-sensitive, so please be careful (it is no longer case-sensitive after MySQL 5.0).
  • It is not possible to explicitly specify the variable type, and the actual variable type depends on uncertain type inference, and different versions may differ. The best way is to specify the type when defining it at the beginning, such as using 0 to set integer variables, 0.0 to set floating-point variables, and '' for strings. However, if a new value is specified later, the type will change with the new value. This is because the type of MySQL custom variables is dynamic.
  • In some cases, the optimizer may optimize custom variables, resulting in failure to perform queries as expected.
  • The order and even the timing of the assignments are uncertain, depending on the query plan chosen by the optimizer. Therefore, the end result can be confusing.
  • The assignment operator has lower precedence than any other operator, so explicit parentheses must be used.
  • Undefined variables will not report an error, which can easily lead to errors.

Custom variables can be used in all types of statements, not just SELECT statements. In fact, this is one of the biggest advantages of custom variables. For example, we can rewrite complex queries to use subqueries to perform sort calculations, or to perform a low-cost UPDATE statement.

Sometimes, the optimizer will think that the variable is a compile-time constant and not assign a value to it, which can cause expected behavior to be strange. Putting custom variable assignments into a function like LEAST usually avoids this problem. Another way is to check if the custom variable has a value before using it. Sometimes you want to do it, and sometimes you don't.

With a little experimentation, we can do a lot of interesting things with custom variables, such as:

  • Calculate totals and averages;
  • Simulate FIRST and LAST functions for grouped queries;
  • Perform mathematical operations on very large numbers;
  • Convert an entire table into an MD5 hash;
  • Filter out sample values ​​that are close to 0 but exceed the set boundary;
  • Simulate read and write pointer positions;
  • Embed variables into WHERE conditions and display them in SHOW statements.

Custom variables are useful in some applications, such as counting the number of occurrences of sorted values, calculating the number of updates and inserts of the same data, and delayed joint queries. The next article will introduce the specific usage.

The above is the detailed content of the concept and characteristics of MySQL custom variables. For more information about MySQL custom variables, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Example of writing lazy UNION in MySQL using custom variables
  • Understanding the MySQL query optimization process
  • MySQL query optimization: a table optimization solution for 1 million data
  • Detailed explanation of MySQL joint query optimization mechanism
  • MySQL query optimization: causes and solutions for slow queries
  • Implementation of MySQL select in subquery optimization
  • Mysql slow query optimization method and optimization principle
  • Detailed explanation of 30 SQL query optimization techniques for MySQL tens of millions of large data
  • MySQL big data query optimization experience sharing (recommended)
  • MySQL million-level data paging query optimization solution
  • MySQL query optimization using custom variables

<<:  Use tomcat to deploy SpringBoot war package in centos environment

>>:  Methods and techniques for quickly displaying web page images

Recommend

Automatic failover of slave nodes in replication architecture in MySQL 8.0.23

I have been in contact with MGR for some time. Wi...

An article to understand what is MySQL Index Pushdown (ICP)

Table of contents 1. Introduction 2. Principle II...

MySQL multi-table join query example explanation

In actual projects, there are relationships betwe...

Detailed explanation of Zabbix installation and deployment practices

Preface Zabbix is ​​one of the most mainstream op...

Detailed explanation of desktop application using Vue3 and Electron

Table of contents Vue CLI builds a Vue project Vu...

How to solve the problem that mysql cannot be closed

Solution to mysql not closing: Right-click on the...

Build a Docker image using Dockerfile

Table of contents Build a Docker image using Dock...

JavaScript function detailed introduction

Any number of statements can be encapsulated thro...

How to modify the group to which a user belongs in Linux

Modify the group to which a user belongs in Linux...

Why is it slow when using limit and offset paging scenarios?

Let’s start with a question Five years ago when I...

How to use MySQL limit and solve the problem of large paging

Preface In daily development, when we use MySQL t...

Detailed tutorial on setting password for MySQL free installation version

Method 1: Use the SET PASSWORD command MySQL -u r...