代码之家  ›  专栏  ›  技术社区  ›  Adam

django不同表数据合并

  •  0
  • Adam  · 技术社区  · 6 年前

    模型.py 前)

    table1(models.Model):
       id = primarykey
       content = textfield
       registerdate = datetimefield
    
    table2(models.Model):
       id = primarykey
       content = textfield
       plus1 = charfield
       plus2 = charfield
       registerdate = datetimefield
    

    我试过了

    tb2 = table2.objects.all().values("id","content","plus1","plus2","registerdate")
    tb1 = table1.objects.all().annotate(plus1=Value('plus1', output_field=CharField()),plus2=Value('plus2', output_field=CharField())).values("id","content","plus1","plus2","registerdate")
    

    合并=tb2.联合(tb1)

    TB2值正确

    但是tb 1领域很奇怪。

    有时 plus1 = plus1 , plus2=plus2 有时 plus1 = plus2 , plus2=plus1

    我想要

    merge.count()
    merge.order_by("-registerdate")
    

    我能得到一致的对齐字段吗

    如果没有

    没有工会我可以点菜吗?

    1 回复  |  直到 6 年前
        1
  •  1
  •   felfel    6 年前

    如果你改变你的表结构,你就不会有这个问题。 请考虑以下几点:

    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'))