आप अपना खुद का एग्रीगेट फंक्शन बना सकते हैं (doc )
from django.db.models import Aggregate
class Concat(Aggregate):
function = 'GROUP_CONCAT'
template = '%(function)s(%(distinct)s%(expressions)s)'
def __init__(self, expression, distinct=False, **extra):
super(Concat, self).__init__(
expression,
distinct='DISTINCT ' if distinct else '',
output_field=CharField(),
**extra)
और इसे बस इस तरह इस्तेमाल करें:
query_set = Fruits.objects.values('type').annotate(count=Count('type'),
name = Concat('name')).order_by('-count')
मैं django 1.8 और mysql 4.0.3 का उपयोग कर रहा हूं