📌  相关文章
📜  在 django 中使用相关名称从多个表中获取数据 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:24.105000             🧑  作者: Mango

代码示例2
Order.objects.select_related('account_customer').all() \
    .values('customer_id', 'other_field_1', ...) \
    .annotate(total_sales=Sum('total_price')) \
    .filter(created_at__year=today.year, created_at__month=today.month)