我正在處理一個查詢,該查詢應該按搜索的關鍵字返回大多數匹配的數組或標題。不知道即使查詢是應該的,但它的工作原理。不要擔心注射,我會在稍後處理。這裏的目標是返回結果最多的行的標題。MySQL查詢返回大多數匹配的第一個
$query = "SELECT * ";
$query .= "FROM user_rec ";
$query .= "WHERE sast1 = '" . $mekletie[0] . "'";
$query .= "OR sast1 = '" . $mekletie[1] . "'";
$query .= "OR sast1 = '" . $mekletie[2] . "'";
/*NOTE - the query isn't complete yet, it will run sast2 next and so on until sast5
and compare all the same searched keywords */
$result = mysqli_query($connection, $query);
if (!$result) {
die ("DB query nedarbojas");
}
目前尚不清楚是什麼問題,或者你正在試圖完成的任務。 –