Assignment Operator (=)
Syntax
identifier = exprDescription
Examples
UPDATE table_name SET x = 2 WHERE x > 100;SET @x = 1, @y := 2;See Also
Last updated
Was this helpful?
identifier = exprUPDATE table_name SET x = 2 WHERE x > 100;SET @x = 1, @y := 2;Last updated
Was this helpful?
Was this helpful?