我有一个模型Person,有时在birth_date
字段中没有任何内容。这是一个例子:
(Pdb) dude = Person.objects.get(pk=20)
(Pdb) dude
<Person: Bob Mandene>
(Pdb) dude.birth_date
(Pdb) dude.birth_date == None
True
如何过滤这些包含birth_date == None
?
我已经尝试了以下但没有成功:
1:“birth_date__isnull”不起作用。
Person.objects.filter(birth_date__isnull = True)
# does not return the required
# object. Returns a record that have birth_date set to
# NULL when the table was observed in MySQL.
以下内容不会返回ID为20的记录。
Person.objects.filter(birth_date = "")
如何过滤无字段?它似乎是NULL而None是不同的。当我使用sequel pro(mysql图形客户端)看到数据时,我看到“0000-00-00 00:00:00”,以下内容也无效
(Pdb) ab=Patient.objects.filter(birth_date = "0000-00-00 00:00:00")
ValidationError: [u"'0000-00-00 00:00:00' value has the correct format
(YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]) but it is an invalid date/time."]
模型
class Person(models.Model):
person_no = models.IntegerField(primary_key=True)
locationid = models.IntegerField(null=True, db_column='LocationID', blank=True)
address = models.ForeignKey('Address', db_column = 'address_no')
birth_date = models.DateTimeField(null=True, blank=True)
class Meta:
managed = False
db_table = 'person'
答案 0 :(得分:0)
mysql中的NULL在python中变为None,所以你对birth_date__isnull = True的所有内容应该返回那些具有birth_date为None的内容。
答案 1 :(得分:0)
嗯,我不确定在这种情况下为什么0000-00-00 00:00:00
被投放到None
,但您可以尝试使用exact
:
Person.objects.filter(birth_date__exact=None)
答案 2 :(得分:0)
一些列表理解可以派上用场:
persons = [person for person in Person.objects.all() if not person.birth_date]