$products = Product::where('status', 1) ->where('stock', '>', 0) ->where('category_id', '=', $category_id) ->groupBy('store_id') ->orderBy('updated_at', 'desc') ->take(4) ->get();
엄격 모드를 완화하거나 MySQL 요구 사항에 맞게 쿼리를 조정하면 이 오류를 제거하고 데이터를 성공적으로 검색할 수 있습니다.
위 내용은 Laravel Eloquent에서 MySQL의 \'In Compatible with sql_mode=only_full_group_by\' 오류를 해결하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!