Skip to content

Instantly share code, notes, and snippets.

@mazlum
Last active June 3, 2019 14:52
Show Gist options
  • Save mazlum/2e76353b8693e7838d3503f1032e1d63 to your computer and use it in GitHub Desktop.
Save mazlum/2e76353b8693e7838d3503f1032e1d63 to your computer and use it in GitHub Desktop.
from django.db.models import Count, Q
q2 = Exam.objects.aggregate(
success=Count("pk", filter=Q(score__gte=85)),
)
print(q)
# {"success": 5}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment