Skip to content

Instantly share code, notes, and snippets.

@tic984
Created June 9, 2015 09:26
Show Gist options
  • Save tic984/0d7943b810675902411d to your computer and use it in GitHub Desktop.
Save tic984/0d7943b810675902411d to your computer and use it in GitHub Desktop.
DELIMITER $$
CREATE PROCEDURE myproc()
BEGIN
DECLARE i int DEFAULT 1993;
WHILE i <= 2014 DO
INSERT INTO year (year) VALUES (i);
SET i = i + 1;
END WHILE;
/* whole procedure ends with the custom delimiter */
END$$
/* Finally, reset the delimiter to the default ; */
DELIMITER ;
CALL myproc();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment