gpt4 book ai didi

python - Django:如何从两个表执行关联查询?

转载 作者:太空宇宙 更新时间:2023-11-03 16:35:04 24 4
gpt4 key购买 nike

我在 models.py 中有人口统计表:

class Demographic(models.Model):
patient_id = models.IntegerField(unique= True ,primary_key=True)
country_of_birth = models.CharField(max_length=30,null=True,blank=True)

def __str__(self):
return str(self.patient_id)

出生国家/地区包含每个患者的国家/地区,例如。 “塞浦路斯”或“希腊”或“英国”或“罗马尼亚”或...

我还有诊断表,其中包含:

class Diagnosis(models.Model):
diagnosis_option = models.CharField( max_length=150)
patient = models.ForeignKey(Demographic)

def __str__(self):
return str(self.patient)

诊断选项包含每个患者的诊断,例如“地中海贫血 a”或“地中海贫血 b”或“镰状贫血”或...

我想在 views.py 中创建相关查询。我想获取每个诊断选项按出生国家/地区列出的患者总数。

例如。塞浦路斯:

  1. 甲型地中海贫血:2 名患者
  2. b 型地中海贫血:2 名患者

罗马尼亚:

  1. 甲型地中海贫血:1 名患者
  2. 镰刀:3名患者

您知道如何创建此查询吗?

最佳答案

如果我理解了你的问题,那么你想要的是每个国家每种疾病的计数。在这种情况下,下面的查询应该可以做到这一点。

from django.db.models import Count

Diagnosis.objects.values(
'diagnosis_option','patient__country_of_birth'
).annotate(c = Count('diagnosis_option'))

关于python - Django:如何从两个表执行关联查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37298244/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com