zoukankan      html  css  js  c++  java
  • [Oracle]快速生成大量模拟数据的方法

    快速生成大量模拟数据的方法:

    create table TEST(id integer, TEST_NUMBER NUMBER(18,6));

    insert into TEST
     select i+j, i+j
       from  (
              with DATA2(j) as (
                                select 0 j from DUAL
                                  union all
                                select j+1000 from DATA2 where j < 999000
                               )
              select j from DATA2
             ),
             (
              with DATA1(i) as (
                                select 1 i from DUAL
                                  union all
                                select i+1 from DATA1 where i < 1000
                               )
              select i from DATA1
             );

    这是生成10万条数据

    如果生成1000完条数据,则变成:


    create table TEST(id integer, TEST_NUMBER NUMBER(18,6));

    insert into TEST
     select i+j, i+j
       from  (
              with DATA2(j) as (
                                select 0 j from DUAL
                                  union all
                                select j+1000 from DATA2 where j < 99990000
                               )
              select j from DATA2
             ),
             (
              with DATA1(i) as (
                                select 1 i from DUAL
                                  union all
                                select i+1 from DATA1 where i < 10000
                               )
              select i from DATA1
             );

  • 相关阅读:
    Web scraping tutorials with FMiner
    javascript
    Installing perl and writing your first perl program in Ubuntu
    c++
    sudo apt-get install libfcgi libfcgi-dev
    微信JSApi支付~订单号和微信交易号
    微信JSApi支付~坑和如何填坑
    WebApi系列~安全校验中的防篡改和防复用
    EF架构~CodeFirst自关联表的插入
    实时监控Cat之旅~对请求是否正常结束做监控(分布式的消息树)
  • 原文地址:https://www.cnblogs.com/gaojian/p/7596248.html
Copyright © 2011-2022 走看看