Assignment Statements
Assigns a value to a variable
varname = <value_expr>;
| Argument | Description | 
|---|---|
| varname | Name of a parameter or local variable | 
| value_expr | An expression, constant or variable whose value resolves to the same data type as varname | 
PSQL uses the equal symbol (‘=’) as its assignment operator.The assignment statement assigns a SQL expression value on the right to the variable on the left of the operator.The expression can be any valid SQL expression: it may contain literals, internal variable names, arithmetic, logical and string operations, calls to internal functions, stored functions or external functions (UDFs).