Created
July 24, 2023 23:47
-
-
Save harunurkst/8558374fcd74c18f25d67cbbf1c2042a to your computer and use it in GitHub Desktop.
Django Aggregate SUM example
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
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