Created
September 24, 2012 13:31
-
-
Save ikks/3775963 to your computer and use it in GitHub Desktop.
Django ORM Aggregation samples
This file contains hidden or 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
#Para contar la cantidad de ventas que se han efectuado: | |
Cartsale.objects.count() | |
#Para contar el precio promedio del valor de los artículos vendidos: | |
CartProduct.objects.aggregate(Avg('price')) | |
#Para obtener la cantidad de productos que se han vendido: | |
CartProduct.objects.aggregate(Sum('quantity')) | |
#Para obtener la cantidad de compras registradas a nombre de un mismo correo: | |
CartSale.objects.annotate(sale_by_mail=Count('email')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment