SET Syntax – MySQL Tutorials
Posted by admin on 18 August, 2008
No comments yet
This item was filled under [ 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 [...]

