我有一个包含 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 }}
1 回答
长风秋雁
TA贡献1757条经验 获得超7个赞
$sql = "SELECT * FROM task WHERE id NOT IN ( '" . implode( "', '" , $cat_id ) . "' )"; $result = mysqli_query($connection, $sql);
- 1 回答
- 0 关注
- 59 浏览
添加回答
举报
0/150
提交
取消