결과를 가져 오기 위해 동일한 쿼리에서 WhereIn 및 Groupby를 사용하고 싶습니다.
나는 이것을 시도했다 :
$loadids=explode("#@*",$reciptdet->loading_id);
$loadingdatas=DB::table('loading')->groupBy('vehicle_no')->whereIn('id',$loadids)->get();
하지만이 오류 메시지가 나타납니다.
SQLSTATE [42000] : 구문 오류 또는 액세스 위반 : 1055 'sbrtpt.loading.id'is not in GROUP BY (SQL : select * from loading where id in (14, 15, 16) group by vehicle_no)