while を使用して mysql ストレージにデータをバッチ挿入する方法

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 ;
    ログイン後にコピー

    10,000個のデータを挿入データ数

    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)
    ログイン後にコピー

    以上がwhile を使用して mysql ストレージにデータをバッチ挿入する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

    関連ラベル:
    ソース:yisu.com
    このウェブサイトの声明
    この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
    最新の問題
    人気のチュートリアル
    詳細>
    最新のダウンロード
    詳細>
    ウェブエフェクト
    公式サイト
    サイト素材
    フロントエンドテンプレート