This file contains hidden or 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
drop procedure if exists doWhile; | |
SET autocommit=0; | |
SET unique_checks=0; | |
SET foreign_key_checks=0; | |
DELIMITER // | |
CREATE PROCEDURE doWhile() | |
BEGIN | |
DECLARE i INT default 1; | |
WHILE (i <= 15000000) DO |
OlderNewer