Talk is cheap,show you the code!
聚合函数 Sum的用法:
total_sale_num = Saleinfo.filter(product_id="9321374", sku_id=1).aggregate(total_sale_num=Sum(‘sale_num‘)).get(‘total_sale_num‘) or 0
求出销售信息中的商品id为9321374,规格id为1的销售总数
时间: 2024-11-02 12:10:46
聚合函数 Sum的用法:
total_sale_num = Saleinfo.filter(product_id="9321374", sku_id=1).aggregate(total_sale_num=Sum(‘sale_num‘)).get(‘total_sale_num‘) or 0
求出销售信息中的商品id为9321374,规格id为1的销售总数