主页 > 知识库 > laravel join关联查询代码实例

laravel join关联查询代码实例

热门标签:百度商铺地图标注 新河科技智能外呼系统怎么样 地图标注平台怎么给钱注册 常州地图标注服务商 福州人工外呼系统哪家强 钉钉打卡地图标注 安装电销外呼系统 注册400电话申请 衡水外呼系统平台

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 join关联查询代码实例》,本文关键词  laravel,join,关联,查询,代码,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《laravel join关联查询代码实例》相关的同类信息!
  • 本页收集关于laravel join关联查询代码实例的相关信息资讯供网民参考!
  • 推荐文章