欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

where 不等于 != 有大用

$articles = Article::where('category_id','!=',$not_category_id)->where('is_area',$is_area)->orderby('article_sort','desc')->paginate(20);


Laravel Eloquent 的条件不等于

posted @ 2016-10-09 23:33 wakasann 阅读(3658) 评论(0编辑 收藏

方法一: 使用Eloquent的where

where('id', '!=' , 2)

方法二: 使用Eloquent的whereNotIn

->whereNotIn( 'id', [2])

参考文献:

  1. Eloquent - where not equal to

  2. MySQL query: where field is not equal to some of the given values

来自  https://www.cnblogs.com/fsong/p/5944270.html

普通分类: