User-Defined Variables Like @x

This section provides a quick introduction on user-defined variables, which are used by client sessions to carry information from one command to other later commands.

What Are User-Defined Variables? User-Defined Variables are variables used in client sessions to carry information from one command to other later commands.

To refer to a user-defined variable, you must prefix its name with "@".

There are several ways to use a user-defined variable:

Here are some examples on using user-defined variables.

mysql> set @x := 'HerongYang.com';
Query OK, 0 rows affected (0.00 sec)

mysql> select lower(@domain) into @y;
Query OK, 1 row affected (0.00 sec)

mysql> select @y;
+----------------+
| @y             |
+----------------+
| herongyang.com |
+----------------+

Assignment operation can also be used in the SELECT clause to update variables on the fly.

mysql> set @i := 1;

mysql> select (@i:=@i+1) as i;
+------+
| i    |
+------+
|    2 |
+------+

mysql> select (@i:=@i+1) as i;
+------+
| i    |
+------+
|    3 |
+------+

Note that both ":=" and "=" are valid assignment operators.

Table of Contents

 About This Book

 Introduction of SQL

 MySQL Introduction and Installation

 Introduction of MySQL Programs

 PHP Programs and MySQL Server

 Perl Programs and MySQL Servers

 Java Programs and MySQL Servers

 Datatypes and Data Literals

 Operations and Expressions

 Character Strings and Bit Strings

 Commonly Used Functions

 Table Column Types for Different Types of Values

 Using DDL to Create Tables and Indexes

 Using DML to Insert, Update and Delete Records

 Using SELECT to Query Database

 Window Functions for Statistical Analysis

 Use Index for Better Performance

 Transaction Management and Isolation Levels

 Locks Used in MySQL

 Defining and Calling Stored Procedures

 Variables, Loops and Cursors Used in Stored Procedures

System, User-Defined and Stored Procedure Variables

 System Variables Like @@version

 Scopes of System Variables: Global and Session

User-Defined Variables Like @x

 User-Defined vs. Stored Procedure Variables

 MySQL Server Administration

 Storage Engines in MySQL Server

 InnoDB Storage Engine - Primary and Secondary Indexes

 Performance Tuning and Optimization

 Bulk Changes on Large Tables

 MySQL Server on macOS

 Installing MySQL Server on Linux

 Connection, Performance and Second Instance on Linux

 Archived Tutorials

 References

 Full Version in PDF/EPUB