当前位置: > 数据库 > MySQL >

mysql 使用存储过程去添加大量测试数据

时间:2019-04-04 15:13来源:linux.it.net.cn 作者:IT
create procedure d1()
begin 
    DECLARE i  int DEFAULT 0;
    DECLARE j int DEFAULT 0;

    while(i<5000000) do 
        INSERT INTO `test`.`book` (`book_name`, `book_address`) VALUES ( 'java', 'asdasdqweqe');
        set i = i+1;
        if mod(i,1000)=0 then commit;
                    end if;    
    END WHILE;
end;

---!!!注意,mysql5.5+以后的版本默认创建表的存储引擎为InnoDB.

需要将mysql的存储引擎转换为MySIAM。   MySIAM关注的是数据库的性能,不支持事物。InnoDB关注的事物


--执行存储过程

call d1(); 

--耐心等待


(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容