Laravel Eloquent 的条件不等于

方法一: 使用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
posted @ 2016-10-09 23:33  五毛钱的饼  阅读(15027)  评论(0编辑  收藏  举报