数据库查询使用了 where leftjoin 后还可以使用AS么?
$r=DB::table('contracts')
->where('contracts.user_id', '=', $id)
->leftJoin('details', 'contracts.htid', '=', 'details.id')
->paginate(10);
我现在想吧details里面的did as 成 dtid,应该怎么处理?
->where('contracts.user_id', '=', $id)
->leftJoin('details', 'contracts.htid', '=', 'details.id')
->paginate(10);
我现在想吧details里面的did as 成 dtid,应该怎么处理?
0 个回复