Laravel 中使用 MySQL:find_in_set 函数需要通过 whereRaw 方法,示例如下:
查询数据库 type 列中,存在 2 的文章。
$type = 2;
$articles = DB::table('article')->whereRaw('FIND_IN_SET(?,type)',[$type])->get();
not find_in_set 示例
$type = 2;
$articles = Article::whereRaw('NOT FIND_IN_SET(?,type)',[$type])->get();