我可以一次在mysql中插入2行或数组

时间:2010-11-08 12:48:53

标签: php mysql arrays insert row

我可以一次在mysql中插入2行或数组吗?

4 个答案:

答案 0 :(得分:4)

insert into table (name,other) values ('name1', 'other2'), ('name2', 'other2'), ('name3', 'other3') 

这意味着您可以像使用

一样使用foreach
 $values = Array();
 foreach($array as $arr)
   $values[] = "('{$arr['name']}','{$arr['name']}')";
 query("insert into table values" . implode(', ', $values ));

答案 1 :(得分:3)

是的,当然。

http://dev.mysql.com/doc/refman/5.1/en/insert.html

INSERT INTO my_table (field1,field2) VALUES (value1, value2), (value3, value4)

和另一种不仅适用于MySQL的方式

INSERT INTO my_table (field1,field2)
SELECT value1, value2
UNION ALL SELECT value3, value4
UNION ALL SELECT value5, value6

答案 2 :(得分:2)

$sql = "INSERT INTO table_name (title) VALUES ('row 1'), ('row 2'), ('row 3')";

请参阅http://dev.mysql.com/doc/refman/5.1/en/insert.html

答案 3 :(得分:1)

应该使用多个值。

INSER INTO [table] ([columns]) VALUES ([values],[values]);