Created
June 3, 2019 14:30
-
-
Save mazlum/6b2a4c2bb86e2bb7ed07507ce8d94368 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 Case, IntegerField, Sum, Value, When | |
from django.db.models.functions import Coalesce | |
q = Exam.objects.aggregate( | |
success=Coalesce( | |
Sum( | |
Case( | |
When(score__gte=85, then=Value(1)), | |
default=Value(0), | |
output_field=IntegerField(), | |
) | |
), | |
Value(0), | |
), | |
) | |
print(q) | |
# {"success": 5} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment