代码之家  ›  专栏  ›  技术社区  ›  deviloper

在laravel where子句中使用find \u in \u set()

  •  1
  • deviloper  · 技术社区  · 5 年前

    select `id` from `questions` where FIND_IN_SET(8, categories);
    

    但是我使用的是laravel,我想在那里写这个查询。我试过这个:

    $q_category = 8;
    $object = DB::table("questions")
      ->select('id')
      ->where(DB::RAW("FIND_IN_SET($q_category, categories)"), '!=', null)
      ->get();
    

    去获取那些 8 在他们的 categories 列(包含逗号分隔的类别ID)

    但是我得到的记录也没有类别id。

    1 回复  |  直到 5 年前
        1
  •  3
  •   Tim Biegeleisen    5 年前

    我发现您当前的代码有几个潜在的问题。首先,您应该绑定 $q_category FIND_IN_SET . 第二,检查呼叫是否成功 在\u集中查找\u 返回值大于零,而不是非零 NULL .

    $q_category = 8;
    $object = DB::table("questions")
        ->select('id')
        ->whereRaw("FIND_IN_SET(?, categories) > 0", [$q_category])
        ->get();
    
    推荐文章