python Django中使用ORM进行分组统计并降序排列
python
# 使用supplier和Count进行分组统计,其中supplier为MyModel的一个字段
supplier_counts = MyModel.objects.values('supplier').annotate(count=Count('supplier')).order_by('-count')
# 输出统计结果
for supplier_count in supplier_counts:
print(f"Supplier: {supplier_count['supplier']}, Count: {supplier_count['count']}")