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

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    laravel join关联查询代码实例

    laravel join关联查询

    1、两表关联

    $fbaInventoryTb = (new \App\Model\Amz\Fba\InventoryReport)->getTable();
    $productTb = (new \App\Model\Amz\Product)->getTable();
    $twInventoryTb = (new \App\Model\TWUsa\TwusaInventory)->getTable();
    $qry = \DB::table($fbaInventoryTb);
      $qry->select($fbaInventoryTb.'.*')
       ->where($fbaInventoryTb.'.ec_id',1)
       ->leftjoin($productTb, $productTb.'.sku', '=', $fbaInventoryTb.'.sku')
       ->addSelect($productTb.'.id as goods_id',$productTb.'.sku as mfn', $productTb.'.ec_id as pro_ec_id');
    //  ->where($productTb.'.ec_id',1); //不应该在此处排除 product 表的ec_id
    
    //  return $qry->toSql();
      $res = $qry->get()->whereIn('pro_ec_id',[1, null] );//leftJion 最后排除不符合条件的

    2、三表关联

    $qry = \DB::table($twInventoryTb);
      $qry->select($twInventoryTb.'.*')
       ->leftjoin($fbaInventoryTb, $fbaInventoryTb.'.fnsku', '=', $twInventoryTb.'.product_sn')
       ->addSelect($fbaInventoryTb.'.ec_id')
       ->where($fbaInventoryTb.'.ec_id',1);
    
      $qry->LeftJoin($productTb, $productTb.'.sku', '=', $fbaInventoryTb.'.sku')
    //   ->where($productTb.'.ec_id',1)
       ->addSelect($productTb.'.id as goods_id', $productTb.'.sku as mfn', $productTb.'.ec_id as pro_ec_id');
    
      $res = $qry->get()->whereIn('pro_ec_id', [1, null]);

    到此这篇关于laravel join 关联查询代码实例的文章就介绍到这了,更多相关laravel join 关联查询内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    您可能感兴趣的文章:
    • Laravel 重写日志,让日志更优雅
    • laravel使用组件实现微信网页授权登入
    • Laravel统一封装接口返回状态实例讲解
    • laravel中Join语法以及使用Join多个条件
    • laravel框架的缓存操作代码实例
    • laravel日志优化实例讲解
    • laravel下trait的使用代码实例详解
    • 清除laravel缓存命令代码实例
    • 如何用Laravel包含你自己的帮助函数
    上一篇:laravel框架的缓存操作代码实例
    下一篇:laravel中Join语法以及使用Join多个条件
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯

    时间:9:00-21:00 (节假日不休)

    地址:江苏信息产业基地11号楼四层

    《增值电信业务经营许可证》 苏B2-20120278

    laravel join关联查询代码实例 laravel,join,关联,查询,代码,