Mysql
 sql >> Datenbank >  >> RDS >> Mysql

GROUP_CONCAT-Äquivalent in Django

Sie können Ihre eigene Aggregatfunktion erstellen (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)

und verwenden Sie es einfach als:

query_set = Fruits.objects.values('type').annotate(count=Count('type'),
                       name = Concat('name')).order_by('-count')

Ich verwende Django 1.8 und MySQL 4.0.3