想要将 order_ids 的数组作为单独的一个一个插入到 mysql db 中
want to insert the array of order_ids as separate one by one inserts in mysql db
我想插入order_ids的数组,因为在中一一插入mysql db on php 就像我有 order_ids 变量一样
$order_ids = (123,223,354,343,566,334);
想像一样在数据库列中插入单独的插入
INSERT INTO `oc_delivery`( `order_id`, `agent_name`) VALUES ('123', 'samm');
INSERT INTO `oc_delivery`( `order_id`, `agent_name`) VALUES ('223', 'samm');
我怎样才能做到这一点..帮助我的朋友们。提前致谢
for($i=0;$i<count($order_ids);$i++){
INSERT INTO `oc_delivery`( `order_id`, `agent_name`) VALUES ($order_ids[$i], 'name1');
}
您可以尝试使用下面的代码在 mysql
中插入 order_ids
的数组。所以,你只需要一个数据库查询就可以实现它。
<?php
$order_ids = array(123,223,354,343,566,334);
$query = 'INSERT INTO oc_delivery(order_id,agent_name) VALUES ';
for ($i=0; $i < count($order_ids); $i++)
{
$query .= '('.$order_ids[$i].',"samm")';
}
?>
试试这个:
foreach ($order_ids as $order_id) {
$query = 'INSERT INTO oc_delivery( "order_id", "agent_name") VALUES ($order_id, "samm")';
}
foreach($order_ids as $value)
{$sql="INSERT INTO `oc_delivery`( `order_id`, `agent_name`) VALUES ('$value', 'samm')";
mysqli_query(connection_object,$sql);}
我想插入order_ids的数组,因为在中一一插入mysql db on php 就像我有 order_ids 变量一样
$order_ids = (123,223,354,343,566,334);
想像一样在数据库列中插入单独的插入
INSERT INTO `oc_delivery`( `order_id`, `agent_name`) VALUES ('123', 'samm');
INSERT INTO `oc_delivery`( `order_id`, `agent_name`) VALUES ('223', 'samm');
我怎样才能做到这一点..帮助我的朋友们。提前致谢
for($i=0;$i<count($order_ids);$i++){
INSERT INTO `oc_delivery`( `order_id`, `agent_name`) VALUES ($order_ids[$i], 'name1');
}
您可以尝试使用下面的代码在 mysql
中插入 order_ids
的数组。所以,你只需要一个数据库查询就可以实现它。
<?php
$order_ids = array(123,223,354,343,566,334);
$query = 'INSERT INTO oc_delivery(order_id,agent_name) VALUES ';
for ($i=0; $i < count($order_ids); $i++)
{
$query .= '('.$order_ids[$i].',"samm")';
}
?>
试试这个:
foreach ($order_ids as $order_id) {
$query = 'INSERT INTO oc_delivery( "order_id", "agent_name") VALUES ($order_id, "samm")';
}
foreach($order_ids as $value)
{$sql="INSERT INTO `oc_delivery`( `order_id`, `agent_name`) VALUES ('$value', 'samm')";
mysqli_query(connection_object,$sql);}