SET Syntax - MySQL Tutorials
The general syntax of SET statement is :
SET variable_assignment [, variable_assignment] …
variable_assignment : user_var_name = expr | [GLOBAL | SESSION] system_var_name = expr | [@@global. | @@session. | @@]system_var_name = expr
SET statement is used for assigning the values for different types of variables which affects the operation of your client or the server. In [...]

