Answers for "mysql define variable in where"

SQL
9

how to create a variable in mysql

-- MySQL

SET @variable_name := value;
Posted by: Guest on July-22-2020
0

mysql function variable

CREATE PROCEDURE p(increment INT)
BEGIN
  DECLARE counter INT DEFAULT 0;
  WHILE counter < 10 DO
    -- ... do work ...
    SET counter = counter + increment;
  END WHILE;
END;
Posted by: Guest on May-15-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language