Skip to content

Instantly share code, notes, and snippets.

@harunurkst
Created July 24, 2023 23:47
Show Gist options
  • Save harunurkst/8558374fcd74c18f25d67cbbf1c2042a to your computer and use it in GitHub Desktop.
Save harunurkst/8558374fcd74c18f25d67cbbf1c2042a to your computer and use it in GitHub Desktop.
Django Aggregate SUM example
deposit_sum = Sum('amount', filter=Q(transaction_type='deposit'))
withdraw_sum = Sum('amount', filter=Q(transaction_type='withdraw'))
deposit = Savings.objects.filter(branch=branch).aggregate(
total_deposit= deposit_sum - withdraw_sum
)['total_deposit']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment