标签: python sql django
假设我有三个模型,County模型有很多Communities。每个Community都有许多Mall个模型。
County
Communities
Community
Mall
我知道如果我想检查一个郡是否有任何社区,我只会做County.objects.filter(community__isnull=False).distinct(),但我有办法:
County.objects.filter(community__isnull=False).distinct()
获取所有拥有一个或多个购物中心的县?
假设每个人都有一个具有商店数量的IntegerField。我如何获得超过x商店的商场?
x