我目前正在使用以下代码片段来搜索数据库
for($i=0; $i<sizeof($deleted_records);$i++) {
if($stmt->prepare("SELECT `id`, `status` FROM `02-2012` WHERE `id` = ?")) {
// Bind your variable to replace the ?
$stmt->bind_param('s', $id);
// Set your variable
$id = $deleted_records[$i];
// Execute query
$stmt->execute();
// Bind your result columns to variables
$stmt->bind_result($id_f, $stat_f);
// Fetch the result of the query
while($stmt->fetch()) {
//echo $id_f . ' - ' . $stat_f . '<div>';
array_push($hits, $id_f);
}
}
在哪里
$deleted_records
是一个大数组(基本上是试图在'02-2012'表中找到该数组元素的所有出现)
这种方法的问题在于它非常缓慢。我确信有比这种蛮力方法更好/更优雅的方法。
谢谢你的时间