Tagged Questions

0
votes
2answers
718 views

Django: remove GROUP BY added with extra() method?

Hi (excuse me for my bad english) ! When I make this: gallery_qs = Gallery.objects.all()\ .annotate(Count('photos'))\ .extra(select={'photo_id': ...