Home > Backend Development > PHP Tutorial > 安插多条数据

安插多条数据

WBOY
Release: 2016-06-13 13:01:08
Original
893 people have browsed it

插入多条数据
Array ( [0] => /htdocs/uploads/resource/20121216145006_4246.docx [1] => /htdocs/uploads/resource/20121216145006_5567.docx )

如何将上面数组分两条记录插入数据库?即[0]一条,[1]一条
------解决方案--------------------
foreach($arr as $v){
     mysql_query("insert into talbe.....");
}
------解决方案--------------------

引用:
foreach($arr as $v){
     mysql_query("insert into talbe.....");
}

这个效率太低,生成一句sql较好。
------解决方案--------------------
引用:
引用:引用:foreach($arr as $v){
     mysql_query("insert into talbe.....");
}
这个效率太低,生成一句sql较好。


请赐教!

如果上面这样写,有N条记录,就要执行N条插入语句,如果你拼成一个
INSERT INTO table_name (field1,field2,....) 
VALUES
(value1,value2,...),
(value3,value4,...)....
那么只要执行一次就可以了。
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template