gpt4 book ai didi

php - 我想从数据库中获取数据,不包括部分数据

转载 作者:行者123 更新时间:2023-11-29 10:35:12 26 4
gpt4 key购买 nike

     if($city!='Others'){

$posts = Post::orderby('id','desc')->where(['city'=>$city])->paginate(10);
}
else{
$posts = Post::orderby('id','desc')->whereNotIn(['city'=>'Lahore'])->paginate(10);
}
}

我已经显示了一些特定的数据,现在我想显示除了之前显示的数据之外的数据。

首先,如果显示正常数据,我尝试在其他部分显示剩余数据。

最佳答案

WhereNotIn 将采用 array 的值您还需要在其中传递列名称

if($city !='Others'){
$posts = Post::orderby('id','desc')->where(['city'=>$city])->paginate(10);
}
else{
$posts = Post::orderby('id','desc')->whereNotIn('city',['Lahore'])->paginate(10);
}

关于php - 我想从数据库中获取数据,不包括部分数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46542753/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com