This tutorial explains how to declare variables in MySQL with syntax and examples.
In MySQL, a variable allows a programmer to store data temporarily during the execution of code.
The syntax to declare a variable in MySQL is:
The name to assign to the variable.
The datatype to assign to the variable.
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.
Below is an example of how to declare a variable in MySQL called vSite.
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:
This SET statement would set the vSite variable to a value of 'AODBA.com'.
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.
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:
This SET statement would change the vSite variable from a value of 'AODBA.com' to a value of 'mySite.com'.