如果你改变你的表结构,你就不会有这个问题。
请考虑以下几点:
table1(models.Model):
id = primarykey
content = textfield
registerdate = datetimefield
table2(table1):
plus1 = charfield
plus2 = charfield
如果你用这个你可以用
table1.objects.count()
你也可以只使用
table2.objects.count()
你也可以使用
OneToOne
领域。下面是一个例子:
table1(models.Model):
id = primarykey
content = textfield
registerdate = datetimefield
table2(models.Model):
id = primarykey
table1 = models.OneToOne(table1)
plus1 = charfield
plus2 = charfield
现在你可以用
F
像这样的表2上的对象
from django.db.models import F
table2.objects.all().annotate(content=F('table1__content'), registerdate =F('table1__ registerdate'))