本文介绍了使用sqlalchemy进行布尔字段查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
Postgres模型:
Postgres model:
class Song(db.Model):
id3_parsed = db.Column(db.Boolean, server_default=u'false')
运行以下查询可得出正确的计数:
Running the following query gives the correct count:
select count(*) from song where id3_parsed is false;
但是我如何用flask-sqlalchemy做到这一点?这不起作用:
But how do I do it with flask-sqlalchemy? This doesn't work:
songs = Song.query.filter(Song.id3_parsed == False).all()
推荐答案
songs = Song.query.filter(Song.id3_parsed.is_(False)).all()
这篇关于使用sqlalchemy进行布尔字段查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!