我在Laravel中有这个查询
$billings = DB::table('billing as b')
->select(
'b.sender',
'b.message',
'b.amount',
DB::raw('DATE(b.created_at) as billing_date'),
'b.billing_type',
'b.service_name',
'b.package_name'
)
->orderByRaw('b.created_at DESC')
->get();
我希望查询是发件人出现多次的地方。
请问我该如何实现?
答案 0 :(得分:0)
使用groupby并在一起:
header: null