sql >> Databáze >  >> RDS >> Mysql

Jak vložit pole do MySQL pomocí Codeigniter?

Můžete použít insert_batch Například:

$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')


  1. Java Guid Convert to Oracle Raw(16) String

  2. Výjimka SQLite Query Kód chyby syntaxe Android Studio 1

  3. Používání Oracle EXPAND_SQL_TEXT

  4. Jak použít sum() v rámci group_concat()?