如何检查字段是否为雄辩不为空?

我试着模型::(‘sent_at’,‘不是’,DB::生(“空”))- >…但它给出了IS NOT作为一个绑定,而不是一个比较。

这是DB::getQueryLog()所说的:

  'query' => string 'select * from my_table where sent_at = ? and profile_id in (?, ?) order by created_at desc' (length=101)
  'bindings' => 
    array (size=3)
      0 => string 'IS NOT' (length=6)
      1 => int 1
      2 => int 4

当前回答

检查“非空”

Model::whereNotNull('column1');

检查“零”

Model::whereNull('column1');

另一个解决方案是使用whereRaw()

Model::whereRaw("column1 IS NOT NULL");
Model::whereRaw("column1 IS NULL");

其他回答

你可以简单地这样做:

Model::whereNotNull('sent_at')->get();
$deliveryTo = DeliveryTo::where([
            ['delete_flg', '=', 0],
            ['area_id', '=', 1],
            ['area_id', '!=', NULL],
        ])->get();

Eloquent对此有一个方法(Laravel 4.*/5.*);

Model::whereNotNull('sent_at')

Laravel 3:

Model::where_not_null('sent_at')

如果你想搜索已删除的记录(软删除记录),不要使用雄辩模型查询。

请使用Db::table查询。例如:

而不是:

$stu = Student::where('rollNum', '=', $rollNum . '-' . $nursery)->first();

Use:

$stu = DB::table('students')->where('rollNum', '=', $newRollNo)->first();

您也可以使用原始查询。

记住:报告是我的模型,我使用原始,原始查询的最好的事情是,你可以使用多种类型的操作符,如and,或等,只是作为一个字符串传递。

例如:WHERE condition1 AND condition2 AND condition3…;


Reports::whereRaw("column1 IS NOT NULL AND column2 IS NOT NULL");

上面的查询将以如下方式执行:

从列不为空和列2不为空的报告中选择*。

为了更多地理解IS Null和IS not Null操作符:

https://www.w3schools.com/sql/sql_and_or.asp