我有一個(gè)包含 6 個(gè)隨機(jī) id 的數(shù)組。如何 select * where id not equal to在 php 中執(zhí)行我的數(shù)組?我正在嘗試使用 for 循環(huán),但首先它返回除 之外的所有內(nèi)容id[0],第二次返回除了 之外的所有內(nèi)容id[1],依此類推。我的查詢看起來(lái)像這樣select * from challenges where id <> id[i]我的數(shù)組是catogary_id并且看起來(lái)像Array ( [0] => 6 [1] => 2 [2] => 4 [3] => 10 [4] => 3 [5] => 5 [6] => 8 [7] => 1 [8] => 7 )循環(huán)for($cnt=0;$cnt<count($cat_id);$cnt++){ $task_id=$catogary_id[$cnt]; $result = mysqli_query($connection,"select * from task id <> $task_id"); $Qno=1; while($row=mysqli_fetch_assoc($result)) { do something here }}
在 php 中選擇不等于循環(huán)
月關(guān)寶盒
2023-09-22 16:30:20