laravel join关联查询代码实例
发布:smiling 来源: PHP粉丝网 添加日期:2022-04-19 08:49:01 浏览: 评论:0
这篇文章主要介绍了laravel join关联查询代码实例,join联查是写sql查询的时候常用也是高效的一种查询,文中是结合laravel框架来使用联查,有感兴趣的同学可以学习下。
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]);
Tags: laravel关联查询 join关联查询
- 上一篇:laravel框架的缓存操作代码实例
- 下一篇:最后一页
相关文章
- ·浅谈laravel中的关联查询with的问题(2021-12-28)
- ·laravel 框架结合关联查询 when()用法分析(2022-01-23)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)