使用 SQLAlchemy 在 SQLite 中过滤今天提交的记录
Filter records submitted today in SQLite using SQLAlchemy
我正在为不同的应用程序使用两个数据库。在这两个应用程序中,我都想按 今天 过滤条目,所以我在 Postgres 中使用了以下函数 并且效果很好 .
query = MyModel.query.filter(cast(MyModel.my_time_stamp, Date) == date.today()).all()
当我将数据库更改为 SQLite3 时,没有显示任何结果。上面查询在 SQLite3 中的输出是:
>>> print(query)
>>> []
我要找的是:
SQLite3SQLite3中使用时间戳对记录进行排序,只显示今天输入的记录。
实际上我刚刚找到并回答了我的问题:
from sqlalchemy import func
from datetime import date
query = MyModel.query.filter(func.date(MyModel.my_time_stamp)==date.today()).all()
这样就可以了。
我正在为不同的应用程序使用两个数据库。在这两个应用程序中,我都想按 今天 过滤条目,所以我在 Postgres 中使用了以下函数 并且效果很好 .
query = MyModel.query.filter(cast(MyModel.my_time_stamp, Date) == date.today()).all()
当我将数据库更改为 SQLite3 时,没有显示任何结果。上面查询在 SQLite3 中的输出是:
>>> print(query)
>>> []
我要找的是:
SQLite3SQLite3中使用时间戳对记录进行排序,只显示今天输入的记录。
实际上我刚刚找到并回答了我的问题:
from sqlalchemy import func
from datetime import date
query = MyModel.query.filter(func.date(MyModel.my_time_stamp)==date.today()).all()
这样就可以了。