我有一个包含 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
}
}
长风秋雁