考虑以下代码片段,其中有两个 MySQL 查询作为循环的一部分被触发:
<?php
$requested_names_array = ['ben','john','harry'];
$statement_1 = $connection->prepare("SELECT `account_number` FROM `bank_members` WHERE `name` = :name");
$requested_name = "";
$statement_1->bindParam(":name",$requested_name); //$requested_name will keep changing in value in the loop below
foreach($requested_names_array as $requested_name){
$execution_1 = $statement_1->execute();
if($execution_1){
//fetch and process results of first successful query
$statement_2 = $connection->prepare("SELECT `account_balance` from `account_details` WHERE `account_number` = :fetched_account_number");
$statement_2->bindValue(":fetched_account_number",$fetched_account_number);
$execution_2 = $statement_2->execute();
if($execution_2){
//fetch and process results of second successful query, possibly to run a third query
}
}else{
echo "execution_1 has failed, $statement_2 will never be executed.";
}
}
?>
这里的问题是$statement_2 是一次又一次地准备,而不是仅仅使用不同的参数执行。
我不知道 $statement_2 是否也可以在进入循环之前准备好,所以它只在循环中更改其参数时执行(而不是准备),就像 $statement_1 一样。
在这种情况下,您最终会首先准备好几个语句,每个语句都将在随后的循环中执行。
即使这可能,它也可能效率不高,因为如果其他语句的执行失败,某些语句将徒劳地准备。
您如何建议保持这样的结构优化?