laravel 使用DB 鏈接leftJoin查詢
Posted 头大的冯冯
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了laravel 使用DB 鏈接leftJoin查詢相关的知识,希望对你有一定的参考价值。
1 $product_count = DB::table(‘fook_platform_orderrefund as a‘) 2 ->leftJoin(‘fook_platform_orderinfo as i‘,‘a.orderinfo_id‘, ‘=‘ ,‘i.id‘) 3 ->whereBetween(‘a.refund_time‘,[date(‘Y-m-d 00:00:00‘, strtotime("-$i days")), date(‘Y-m-d 23:59:59‘, strtotime("-$i days"))]) 4 ->count("a.id");
以上是关于laravel 使用DB 鏈接leftJoin查詢的主要内容,如果未能解决你的问题,请参考以下文章