Created
June 9, 2015 09:26
-
-
Save tic984/0d7943b810675902411d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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