zoukankan      html  css  js  c++  java
  • mysql数据库中,通过一条insert into语句,同时插入多个值

    需求描述

      今天在看一本mysql的书籍,发现一个mysql中insert into好用的技巧,就是通过

      1条insert into语句,插入多行数据,而不是多个insert into语句。在此记录下。

    测试过程

    1.常规的通过多个insert into语句插入多行数据

    create table tab_ts01(id int,num01 int);
    insert into tab_ts01 values (1,2);
    insert into tab_ts01 values (2,3);
    insert into tab_ts01 values (5,55);
    insert into tab_ts01 values (40,22);

    执行过程

    mysql> drop table if exists tab_ts01;
    Query OK, 0 rows affected (0.08 sec)
    
    mysql> create table tab_ts01(id int,num01 int);
    Query OK, 0 rows affected (0.03 sec)
    
    mysql> insert into tab_ts01 values (1,2);
    Query OK, 1 row affected (0.02 sec)
    
    mysql> insert into tab_ts01 values (2,3);
    Query OK, 1 row affected (0.01 sec)
    
    mysql> insert into tab_ts01 values (5,55);
    Query OK, 1 row affected (0.01 sec)
    
    mysql> insert into tab_ts01 values (40,22);
    Query OK, 1 row affected (0.01 sec)
    
    mysql> select * from tab_ts01;
    +------+-------+
    | id   | num01 |
    +------+-------+
    |    1 |     2 |
    |    2 |     3 |
    |    5 |    55 |
    |   40 |    22 |
    +------+-------+
    4 rows in set (0.00 sec)

    2.通过一条insert into语句,插入多行值

    drop table if exists tab_ts01;
    create table tab_ts01(id int,num01 int);
    insert into tab_ts01 values (1,2),(2,3),(5,55),(40,22);

    执行过程

    mysql> drop table if exists tab_ts01;
    Query OK, 0 rows affected (0.01 sec)
    
    mysql> create table tab_ts01(id int,num01 int);
    Query OK, 0 rows affected (0.12 sec)
    
    mysql> insert into tab_ts01 values (1,2),(2,3),(5,55),(40,22);
    Query OK, 4 rows affected (0.01 sec)
    Records: 4  Duplicates: 0  Warnings: 0
    
    mysql> select * from tab_ts01;
    +------+-------+
    | id   | num01 |
    +------+-------+
    |    1 |     2 |
    |    2 |     3 |
    |    5 |    55 |
    |   40 |    22 |
    +------+-------+
    4 rows in set (0.00 sec)

    备注:发现通过一条insert into语句能够达到与多个insert into语句同样的效果,而且更加的方便,可以作为一个小技巧。

    文档创建时间:2018年3月21日15:02:39

  • 相关阅读:
    P3501 [POI2010]ANT-Antisymmetry
    P3498 [POI2010]KOR-Beads(hash表)
    UVA10298 Power Strings
    UVA1714 Keyboarding(bfs)
    P4289 [HAOI2008]移动玩具(bfs)
    Ubuntu分辨率太小的解决方案
    Ubuntu分辨率太小的解决方案
    主板亮红灯,显示器没信号
    主板亮红灯,显示器没信号
    VS注释与取消注释快捷键
  • 原文地址:https://www.cnblogs.com/chuanzhang053/p/8617092.html
Copyright © 2011-2022 走看看