mysql儲存中怎麼使用while批量插入數據

WBOY
發布: 2023-05-27 10:07:45
轉載
1388 人瀏覽過

    批次提交

    while 語句寫法:

        while '条件' do
                循环体语句;
        end while;
    登入後複製

    完整寫法

    drop procedure if exists test_insert;
    delimiter $$
    create procedure test_insert(n int)
        begin
        declare v int default 0;
        set AUTOCOMMIT = 0;
        while v < n
            do
                    insert into test(second_key, text, field_4,status, create_date)
                    values ((v*10),
                    concat(&#39;t&#39;,v),
                    substring(md5(rand()), 1, 10),
                    &#39;good&#39;,
                    adddate(&#39;1970-01-01&#39;, rand(v) * 10000));
            set v = v + 1;
         end while;
          set AUTOCOMMIT = 1;
    end$$
    delimiter ;
    登入後複製

    檢視、刪除預存程序:

    mysql> show procedure status like &#39;test_insert&#39;;
    mysql> show create procedure test_insert\G;
    mysql> drop procedure if exists test_insert;
    登入後複製

    建立表格

    CREATE TABLE test (
    id INT NOT NULL AUTO_INCREMENT,
    second_key INT,
    text VARCHAR(20),
    field_4 VARCHAR(20),
    status VARCHAR(10),
    create_date date,
    PRIMARY KEY (id),
    KEY idx_second_key (second_key)
    ) Engine=InnoDB CHARSET=utf8;
    登入後複製

    插入100萬條資料

    mysql> call test_insert(1000000);
    Query OK, 0 rows affected (31.86 sec)
    登入後複製

    單一提交

    完整寫法

    drop procedure if exists test_insert;
    delimiter $$
    create procedure test_insert(n int)
        begin
        declare v int default 0;
        while v < n
            do
                    insert into test(second_key, text, field_4,status, create_date)
                    values ((v*10),
                    concat(&#39;t&#39;,v),
                    substring(md5(rand()), 1, 10),
                    &#39;good&#39;,
                    adddate(&#39;1970-01-01&#39;, rand(v) * 10000));
            set v = v + 1;
         end while;
    end$$
    delimiter ;
    登入後複製

    插入1萬條資料

    mysql> call test_insert(10000);
    Query OK, 1 row affected (1 min 8.52 sec)
    登入後複製

    開啟另一個視窗查看

    mysql> select count(*) from test.test;
    +----------+
    | count(*) |
    +----------+
    |     1428 |
    +----------+
    1 row in set (0.00 sec)
    mysql> select count(*) from test.test;
    +----------+
    | count(*) |
    +----------+
    |     1598 |
    +----------+
    1 row in set (0.00 sec)
    mysql> select count(*) from test.test;
    +----------+
    | count(*) |
    +----------+
    |     1721 |
    +----------+
    1 row in set (0.00 sec)
    mysql> select count(*) from test.test;
    +----------+
    | count(*) |
    +----------+
    |     1983 |
    +----------+
    1 row in set (0.00 sec)
    登入後複製

    以上是mysql儲存中怎麼使用while批量插入數據的詳細內容。更多資訊請關注PHP中文網其他相關文章!

    相關標籤:
    來源:yisu.com
    本網站聲明
    本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
    熱門教學
    更多>
    最新下載
    更多>
    網站特效
    網站源碼
    網站素材
    前端模板