Answers for "mysql function variable declare"

SQL
3

mysql declare variable

SET start = 1;
SET finish = 10;

SELECT * FROM places WHERE place BETWEEN start AND finish;
Posted by: Guest on September-12-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 "mysql function variable declare"

Code answers related to "SQL"

Browse Popular Code Answers by Language