我有一個插入兩個獨立數據庫表的腳本:配料和方向。 對於第一個,我使用$this->db->query($sql)
,對於第二個:$this->db->query($sql2)
(我正在使用CodeIgniter)。 這裏是我的代碼:數據庫插入是否合併?
foreach($_POST as $key => $value) {
$value = $this->input->post($key);
$directions = $this->input->post('directions');
$ingredientQTY = $this->input->post('ingredientQTY');
$measurements = $this->input->post('measurements');
$ingredientNAME = $this->input->post('ingredientNAME');
$ingredientsROW[] = array($ingredientQTY, $measurements, $ingredientNAME);
//For inserting ingredients
for ($i = 0, $count = count($ingredientQTY); $i < $count; $i++) {
$rows[] = array(
'ingredientamount' => $ingredientQTY[$i],
'ingredientType' => $measurements[$i],
'ingredientname' => $ingredientNAME[$i],
'recipe_id' => $recipe_id,
'order' => $i + 1,
'user_id' => $user_id
);
$sql = "INSERT `ingredients` (`ingredientamount`,`ingredientType`,`ingredientname`,`recipe_id`, `listOrder`, `user_id`) VALUES ";
$coma = '';
foreach ($rows as $oneRow) {
$sql .= $coma."('".implode("','",$oneRow)."')";
$coma = ', ';
}
}
$this->db->query($sql);//Insert Query for ingredients
//For inserting directions
for ($i = 0, $count = count($directions); $i < $count; $i++) {
$rows[] = array(
'direction' => $directions[$i],
'recipe_id' => $recipe_id,
'order' => $i + 1,
'user_id' => $user_id
);
$sql2 = "INSERT `directions` (`direction`,`recipe_id`,`listOrder`,`user_id`) VALUES ";
$coma = '';
foreach ($rows as $oneRow) {
$sql2 .= $coma."('".implode("','",$oneRow)."')";
$coma = ', ';
}
}
$this->db->query($sql2); //Insert Query for directions
break;
}
我應該有兩個單獨的SQL語句,但出於某種原因,他們組合成,並生成以下錯誤:
Column count doesn't match value count at row 1
INSERT `directions` (`direction`,`recipe_id`,`listOrder`,`user_id`) VALUES ('1','Bunch','Cilantro','1','1','1'), ('3','Cup','Sugar','1','2','1'), ('First, combine the cilantro and sugar','1','1','1'), ('then eat. ','1','2','1')
應該有一個INSERT ingredients
以及,但它的值合併到INSERT directions
聲明中。
爲什麼要將這兩個SQL語句組合起來?
@PreetSangha,有2個($方向) – Muhambi