Last active
June 3, 2019 14:52
-
-
Save mazlum/2e76353b8693e7838d3503f1032e1d63 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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