• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    laravel 模型查询按照whereIn排序的示例

    实例如下所示:

    $ids = [5,7,3,1,2];
    $data = Content::whereIn('id',$ids)
        ->select('id')
        ->get();
    //查询结果是想按照wherein的顺序排序
    //正确写法
    $data = Content::whereIn('id',$ids)
        ->select('id')
    //   ->orderBy(\DB::raw('FIND_IN_SET(id, "' . implode(",", $ids) . '"' . ")"))
    //   ->orderBy(DB::raw("FIND_IN_SET(id, '" . implode(',', $ids) . "'" . ')'))
    //   ->orderByRaw("FIND_IN_SET(id, '" . implode(',', $ids) . "'" . ')')
        ->orderBy(\DB::raw('FIND_IN_SET(id, "' . implode(",", $ids) . '"' . ")"))
        ->get();

    中午没睡觉一直调试,心塞...

    错误写法

    //错误写法
    $data = Content::whereIn('id',$ids)
        ->select('id')
        ->orderByRaw("FIND_IN_SET('id', "' . implode(",", $ids) . '"' . ")")
        ->get();
    //该写法查询顺序是按照id大小正序排序

    原因解析

    //正确写法的sql语句为
    select `id` from `contents`
    order by FIND_IN_SET(id, "5,6,7,4,2,1") asc
    //错误写法的sql语句为
    select `id` from `contents`
    order by 'FIND_IN_SET(id, "5,6,7,4,2,1")' asc
    //或者
    select `id` from `contents`
    order by `FIND_IN_SET(id, "5,6,7,4,2,1")` asc
     
    //FIND_IN_SET()方法外面不要添加任何符号

    以上这篇laravel 模型查询按照whereIn排序的示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

    您可能感兴趣的文章:
    • laravel ORM关联关系中的 with和whereHas用法
    • 在laravel中使用with实现动态添加where条件
    • laravel 输出最后执行sql 附:whereIn的使用方法
    • 基于laravel where的高级使用方法
    • Laravel中的where高级使用方法实例讲解
    上一篇:解决Laravel无法使用COOKIE和SESSION的问题
    下一篇:Laravel第三方包报class not found的解决方法
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    laravel 模型查询按照whereIn排序的示例 laravel,模型,查询,按照,whereIn,