insert multiple rows via a php array into mysql

后端 未结 12 1511
自闭症患者
自闭症患者 2020-11-21 22:35

I\'m passing a large dataset into a MySQL table via PHP using insert commands and I\'m wondering if its possible to insert approximately 1000 rows at a time via a query othe

相关标签:
12条回答
  • 2020-11-21 23:18

    Assembling one INSERT statement with multiple rows is much faster in MySQL than one INSERT statement per row.

    That said, it sounds like you might be running into string-handling problems in PHP, which is really an algorithm problem, not a language one. Basically, when working with large strings, you want to minimize unnecessary copying. Primarily, this means you want to avoid concatenation. The fastest and most memory efficient way to build a large string, such as for inserting hundreds of rows at one, is to take advantage of the implode() function and array assignment.

    $sql = array(); 
    foreach( $data as $row ) {
        $sql[] = '("'.mysql_real_escape_string($row['text']).'", '.$row['category_id'].')';
    }
    mysql_query('INSERT INTO table (text, category) VALUES '.implode(',', $sql));
    

    The advantage of this approach is that you don't copy and re-copy the SQL statement you've so far assembled with each concatenation; instead, PHP does this once in the implode() statement. This is a big win.

    If you have lots of columns to put together, and one or more are very long, you could also build an inner loop to do the same thing and use implode() to assign the values clause to the outer array.

    0 讨论(0)
  • 2020-11-21 23:18

    Well, you don't want to execute 1000 query calls, but doing this is fine:

    $stmt= array( 'array of statements' );
    $query= 'INSERT INTO yourtable (col1,col2,col3) VALUES ';
    foreach( $stmt AS $k => $v ) {
      $query.= '(' .$v. ')'; // NOTE: you'll have to change to suit
      if ( $k !== sizeof($stmt)-1 ) $query.= ', ';
    }
    $r= mysql_query($query);
    

    Depending on your data source, populating the array might be as easy as opening a file and dumping the contents into an array via file().

    0 讨论(0)
  • 2020-11-21 23:22

    I know this is an old query, but I was just reading and thought I'd add what I found elsewhere:

    mysqli in PHP 5 is an ojbect with some good functions that will allow you to speed up the insertion time for the answer above:

    $mysqli->autocommit(FALSE);
    $mysqli->multi_query($sqlCombined);
    $mysqli->autocommit(TRUE);
    

    Turning off autocommit when inserting many rows greatly speeds up insertion, so turn it off, then execute as mentioned above, or just make a string (sqlCombined) which is many insert statements separated by semi-colons and multi-query will handle them fine.

    Hope this helps someone save time (searching and inserting!)

    R

    0 讨论(0)
  • 2020-11-21 23:22

    You can do it with several ways in codeigniter e.g.

    First By loop

    foreach($myarray as $row)
    {
       $data = array("first"=>$row->first,"second"=>$row->sec);
       $this->db->insert('table_name',$data);
    }
    

    Second -- By insert batch

    $data = array(
           array(
              'first' => $myarray[0]['first'] ,
              'second' => $myarray[0]['sec'],
            ),
           array(
              'first' => $myarray[1]['first'] ,
              'second' => $myarray[1]['sec'],
            ),
        );
    
        $this->db->insert_batch('table_name', $data);
    

    Third way -- By multiple value pass

    $sql = array(); 
    foreach( $myarray as $row ) {
        $sql[] = '("'.mysql_real_escape_string($row['first']).'", '.$row['sec'].')';
    }
    mysql_query('INSERT INTO table (first, second) VALUES '.implode(',', $sql));
    
    0 讨论(0)
  • 2020-11-21 23:24

    Use insert batch in codeigniter to insert multiple row of data.

    $this->db->insert_batch('tabname',$data_array); // $data_array holds the value to be inserted
    
    0 讨论(0)
  • 2020-11-21 23:26

    Multiple insert/ batch insert is now supported by codeigniter. I had same problem. Though it is very late for answering question, it will help somebody. That's why answering this question.

    $data = array(
       array(
          'title' => 'My title' ,
          'name' => 'My Name' ,
          'date' => 'My date'
       ),
       array(
          'title' => 'Another title' ,
          'name' => 'Another Name' ,
          'date' => 'Another date'
       )
    );
    
    $this->db->insert_batch('mytable', $data);
    
    // Produces: INSERT INTO mytable (title, name, date) VALUES ('My title', 'My name', 'My date'), ('Another title', 'Another name', 'Another date')
    
    0 讨论(0)
提交回复
热议问题