在 php 中选择不等于循环

我有一个包含 6 个随机 id 的数组。如何 select * where id not equal to在 php 中执行我的数组?


我正在尝试使用 for 循环,但首先它返回除 之外的所有内容id[0],第二次返回除了 之外的所有内容id[1],依此类推。


我的查询看起来像这样


select * from challenges where id <> id[i]

我的数组是catogary_id并且看起来像


Array ( [0] => 6 [1] => 2 [2] => 4 [3] => 10 [4] => 3 [5] => 5 [6] => 8 [7] => 1 [8] => 7 )

循环


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

    }

}


月关宝盒
浏览 60回答 1
1回答

长风秋雁

&nbsp;$sql&nbsp;=&nbsp;"SELECT&nbsp;* &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;FROM&nbsp;task&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;WHERE&nbsp;id&nbsp;NOT&nbsp;IN&nbsp;(&nbsp;'"&nbsp;.&nbsp;implode(&nbsp;"',&nbsp;'"&nbsp;,&nbsp;$cat_id&nbsp;)&nbsp;.&nbsp;"'&nbsp;)"; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$result&nbsp;=&nbsp;mysqli_query($connection,&nbsp;$sql);
打开App,查看更多内容
随时随地看视频慕课网APP