mysql query problem
        Posted  
        
            by PiePowa
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by PiePowa
        
        
        
        Published on 2010-04-28T12:21:55Z
        Indexed on 
            2010/04/28
            12:23 UTC
        
        
        Read the original article
        Hit count: 147
        
mysql
hey everybody i'm trying to do somthing simple like this
SET i = 0;
WHILE (i <= 2230686) DO
   INSERT INTO customers(check) VALUE(0);
   SET i=i+1;
END WHILE;
in the phpmyadmin SQL query box and it doesntwork and the mysql doesnt throw an understandable reason any clues ?
© Stack Overflow or respective owner