• 快速生成500W测试数据库



    快速生成500W测试数据库;

    创建测试表:

    DROP TABLE IF EXISTS `user`;
    CREATE TABLE `user` (
      `id` int(10) NOT NULL AUTO_INCREMENT,
      `uname` varchar(20) DEFAULT NULL COMMENT '账号',
      `pwd` varchar(20) DEFAULT NULL COMMENT '密码',
      `addr` varchar(80) DEFAULT NULL COMMENT '地址',
      `tel` varchar(20) DEFAULT NULL COMMENT '电话',
      `regtime` char(30) DEFAULT NULL COMMENT '注册时间',
      `age` int(11) DEFAULT NULL COMMENT '年龄',
      PRIMARY KEY (`id`)
    ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

    编写存储过程:

    delimiter $$
    SET AUTOCOMMIT = 0$$
     
    create  procedure test()
    begin
    declare v_cnt decimal (10)  default 0 ;
    dd:loop
        insert  into user values
            (null,rand()*10,now(),rand()*50,rand()*10,rand()*10,rand()*10),
            (null,rand()*10,now(),rand()*50,rand()*10,rand()*10,rand()*10),
            (null,rand()*10,now(),rand()*50,rand()*10,rand()*10,rand()*10),
            (null,rand()*10,now(),rand()*50,rand()*10,rand()*10,rand()*10),
            (null,rand()*10,now(),rand()*50,rand()*10,rand()*10,rand()*10),
            (null,rand()*10,now(),rand()*50,rand()*10,rand()*10,rand()*10),
            (null,rand()*10,now(),rand()*50,rand()*10,rand()*10,rand()*10),
            (null,rand()*10,now(),rand()*50,rand()*10,rand()*10,rand()*10),
            (null,rand()*10,now(),rand()*50,rand()*10,rand()*10,rand()*10),
            (null,rand()*10,now(),rand()*50,rand()*10,rand()*10,rand()*10);
        commit;
            set v_cnt = v_cnt+10 ;
                if  v_cnt = 5000000 then leave dd;
                end if;
            end loop dd ;
    end;$$
     
    delimiter ;

    调用存储过程:

    call test();
  • 相关阅读:
    Java如何遍历二维数据
    Java标识符中常见的命名规则
    Java中常量的概念
    Java的数据类型
    Java中的方法是什么以及方法的书写格式
    Java中什么是构造方法
    Java中继承的概念
    Java中的匿名对象代码实例
    Java集合案例(产生不重复随机数)
    Java中集合的初等案例
  • 原文地址:https://www.cnblogs.com/fangts/p/7573818.html
Copyright © 2020-2023  润新知