在数据库django中存储不同的值

在数据库django中存储不同的值

本文介绍了在数据库django中存储不同的值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

model.py

class Venue(models.Model):
     venue_Name = models.CharField(max_length=100)
     place = models.CharField(max_length=50)
     rent = models.IntegerField()
     parking_area = models.IntegerField()
     picture = models.ImageField(upload_to='images/', blank=True, null=True)

    def __unicode__(self):
        return self.venue_Name

我想创建另一个模型,从Venue类中存储唯一不同的地方值

I want to create another model that stores the only distinct value of place from the Venue class

推荐答案

要获取不同的地方,只需执行一个不同的查询:

To get the distinct places, just do a distinct query:

Venue.objects.values_list('place', flat=True).distinct()

这篇关于在数据库django中存储不同的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 05:57