当我在 MySQL 中有一张表时:
create table t
(
id integer primary key,
time datetime not null,
value integer not null
)
和一个映射类:
class T(Base):
__tablename__ = 't'
id = Column(INTEGER, primary_key=True, nullable=False, unique=True)
time = Column(DATETIME, nullable=False)
value = Column(INTEGER, nullable=False)
如何使用 SQLAlchemy 从该表中选择所有给定月份的值?MySQL 有month
功能:select value from t where month(time) = 4
但 SQLAlchemy 没有month
功能。