Mysql Declaring Variables

MySQL: Declaring Variables

This tutorial explains how to declare variables in MySQL with syntax and examples.

What is a variable in MySQL?

In MySQL, a variable allows a programmer to store data temporarily during the execution of code.

Syntax

The syntax to declare a variable in MySQL is:

DECLARE variable_name datatype [ DEFAULT initial_value ]

Parameters or Arguments

variable_name

The name to assign to the variable.

datatype

The datatype to assign to the variable.

DEFAULT initial_value

Optional. It is the value initially assigned to the variable when it is declared. If an initial_value is not specified, the variable is assigned a value of NULL.

Example - Declaring a variable

Below is an example of how to declare a variable in MySQL called vSite.

DECLARE vSite VARCHAR(40);

This example would declare a variable called vSite as a VARCHAR(40) data type.

You can then later set or change the value of the vSite variable, as follows:

SET vSite = 'AODBA.com';

This SET statement would set the vSite variable to a value of 'AODBA.com'.

Example - Declaring a variable with an initial value (not a constant)

Below is an example of how to declare a variable in MySQL and give it an initial value. This is different from a constant in that the variable's value can be changed later.

DECLARE vSite VARCHAR(40) DEFAULT 'AODBA.com';

This would declare a variable called vSite as a VARCHAR(40) data type and assign an initial value of 'AODBA.com'.

You could later change the value of the vSite variable, as follows:

SET vSite = 'mySite.com';

This SET statement would change the vSite variable from a value of 'AODBA.com' to a value of 'mySite.com'.