Variables

In general, variables are the containers that store some information in a program. The value of a variable can be changed as many times as required. Each variable has a datatype specifying the type of data we can store in it such as integer, string, float etc.

  • In some programming languages such as Java, C, C++ etc., we need to declare the datatype of a variable before assigning values to it.
  • In languages like python the datatype of a variable is presumed based on the values assigned to it. There is no need of declaring the datatype separately.
  • In MySQL there is no need to declare the datatype we can simply define a variable with a value using the SET statement.

Variables in MySQL

The main purpose of a variable is to label a memory location(s) and store data in it so that it can be used throughout the program.

The characters we use to declare and define a variables are called literals and a literal can be anything other than special characters, numbers and, reserved keywords.

In MySQL, there are three types of variables. The same is described below −

  • User-Defined Variable
  • Local Variable
  • System Variable

User-Defined Variables

The User-Defined variable allows us to store a value in one statement and subsequently refer to it in another. To do so, MySQL provides SET and SELECT commands to declare a variable. These variable names will have the symbol “@” as a prefix. We can use either = or := symbols depending on the situation. The user-defined data type can be any of the following: integer, decimal, Boolean, etc.

Syntax

Following is the syntax to declare a user-defined variable in MySQL using the SET statement −

SELECT@variable_name=value

Example

In the following query, we are assigning a value to a variable using the SET statement as follows −

SET@Name=’Michael’;

Using the SELECT statement, we can display the value of @name variable −

SELECT@Name;

Output

The output for the query above is produced as given below −

@Name
Michael

Example

Here, we are assigning a value to a variable using the SELECT statement −

SELECT@test :=10;

Output

On executing the given query, the output is displayed as follows −

@test := 10
10

Example

Let us create table with the name CUSTOMERS using the following query −

CREATETABLE CUSTOMERS( ID INTAUTO_INCREMENTPRIMARYKEY, NAME VARCHAR(20)NOTNULL, AGE INTNOTNULL, ADDRESS CHAR(25), SALARY DECIMAL(18,2));

Now, let us insert values into the above-created table using the


INSERT INTO statement −

INSERTINTO CUSTOMERS (NAME, AGE, ADDRESS, SALARY)VALUES('Ramesh',32,'Ahmedabad',2000.00),('Khilan',25,'Delhi',1500.00),('Kaushik',23,'Kota',2000.00),('Chaitali',25,'Mumbai',6500.00),('Hardik',27,'Bhopal',8500.00),('Komal',22,'Hyderabad',4500.00),('Muffy',24,'Indore',10000.00);

The CUSTOMERS table is created as follows −

IDNAMEAGEADDRESSSALARY
1Ramesh32Ahmedabad2000.00
2Khilan25Delhi1500.00
3Kaushik23Kota2000.00
4Chaitali25Mumbai6500.00
5Hardik27Bhopal8500.00
6Komal22Hyderabad4500.00
7Muffy24Indore10000.00

Now, let us declare a variable with the name @max_salary using the SELECT statement to display the maximum salary value from the CUSTOMERS table −

SELECT@max_salary :=MAX(salary)FROM CUSTOMERS;

Then, we will select records from the table where the salary is equal to @max_salary variable −

SELECT*FROM CUSTOMERS WHERE SALARY =@max_salary;

Output

The output for the query above is produced as given below −

IDNAMEAGEADDRESSSALARY
7Muffy24Indore10000.00

Local Variables

The MySQL local variable can be declared using the DECLARE keyword. When we declare the local variable, the @ symbol is not used as prefix. This variable is a strongly typed variable, which means that we definitely need to declare a data type.

The MySQL DEFAULT keyword can be used while declaring a variable to set the default value of the variable. This is an optional parameter, if we do not define this, the initial value will be NULL.

Syntax

Following is the syntax to declare a local variable in MySQL −

DECLARE variable_name1, variabale_name2, ... data_type [DEFAULT default_value];

Example

In the following example, we are using the DECLARE statement in a stored procedure.

DELIMITER//CREATEPROCEDURE salaries()BEGINDECLARE Ramesh INT;DECLARE Khilan INTDEFAULT30000;DECLARE Kaushik INT;DECLARE Chaitali INT;DECLARE Total INT;SET Ramesh =20000;SET Kaushik =25000;SET Chaitali =29000;SET Total = Ramesh+Khilan+Kaushik+Chaitali;SELECT Total,Ramesh,Khilan,Kaushik,Chaitali;END//

Now, let us call the stored procedure using the following query −

CALL salaries()//;

Output

Following is the output −

TotalRameshKhilanKaushikChaitali
10400020000300002500029000

System Variables

The system variables are predefined by the MySQL. These contains the data we need, to work with the database. Each MySQL system variable has a default value.

The SET command in MySQL can be used at the runtime to dynamically change the values of the system variables.

There are two variable scope modifiers available for the SHOW VARIABLES command. They are GLOBAL and SESSION.

  • The GLOBAL variables are active throughout the lifecycle.
  • The SESSION variables can be available only in the current session.

Following is the command to display all the system variables in MySQL −

SHOW[GLOBAL|SESSION] VARIABLES;

Example

In the following example, let us display the existing global system variables using the SHOW VARIABLES query −

SHOW VARIABLES LIKE'%table%';

The variables are displayed in the table format as follows −

Variable_nameValue
big_tablesOFF
default_table_encryptionOFF
innodb_file_per_tableON
innodb_ft_aux_table
innodb_ft_server_stopword_table
innodb_ft_user_stopword_table
innodb_table_locksON
innodb_temp_tablespaces_dir.\#innodb_temp\
innodb_undo_tablespaces2
innodb_validate_tablespace_pathsON
lower_case_table_names1
max_heap_table_size16777216
old_alter_tableOFF
performance_schema_max_table_handles-1
performance_schema_max_table_instances-1
performance_schema_max_table_lock_stat-1
show_create_table_skip_secondary_engineOFF
show_create_table_verbosityOFF
table_definition_cache2000
table_encryption_privilege_checkOFF
table_open_cache4000
table_open_cache_instances16
tablespace_definition_cache256
temptable_max_mmap1073741824
temptable_max_ram1073741824
temptable_use_mmapON
tmp_table_size99614720
updatable_views_with_limitYES

Now, using the query below, we will fetch the current value of the MySQL “key_buffer_size” variable −

SELECT @@key_buffer_size;

Output

Following is the output of the above query −

@@key_buffer_size
8388608

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *