Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有三个模型,一个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