SET
Sets the new value to the variable. The variable type must match, otherwise the error occurs.
Syntax
SET var_name := value
Examples
DECLARE i := 20;
SET i := 25;
ECHO i; -- 25
Sets the new value to the variable. The variable type must match, otherwise the error occurs.
SET var_name := value
DECLARE i := 20;
SET i := 25;
ECHO i; -- 25