Django에서 GROUP_CONCAT 기능 얻기
MySQL의 GROUP_CONCAT 개념을 확장하여 Django는 유사한 결과를 얻기 위한 대체 접근 방식을 제공합니다. Django에서는 사용자 정의 집계 함수를 사용하여 GROUP_CONCAT을 에뮬레이션할 수 있습니다.
Concat 집계 함수 만들기:
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)
이 사용자 정의 집계 함수를 사용하면 이제 Django 내에서 GROUP_CONCAT 작업을 수행할 수 있습니다. querysets.
사용 예:
다음 데이터가 포함된 Fruits 테이블을 생각해 보세요.
id | type | name |
---|---|---|
0 | apple | fuji |
1 | apple | mac |
2 | orange | navel |
다양한 과일 유형의 수를 검색하려면 쉼표로 구분된 이름 목록과 함께:
query_set = Fruits.objects.values('type').annotate(count=Count('type'), name = Concat('name')).order_by('-count')
이것은 쿼리셋은 다음 결과를 반환합니다:
type | count | name |
---|---|---|
apple | 2 | fuji,mac |
orange | 1 | navel |
위 내용은 Django에서 MySQL의 GROUP_CONCAT 기능을 복제하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!