sqlalchemy查询中的DateTime按年份排序元素

时间:2012-05-17 03:44:52

标签: sqlalchemy sybase-ase

我有一个Sybase表,使用sqlalchemy进行声明映射,如下所示:

from   sqlalchemy.ext.declarative import declarative_base    
Base = declarative_base()

class Appointment(base):
    __tablename__ = 'APPOINTMENT'
    __table_args__ = {'quote':False}

    dt = Column(Date, name='dt_appointment')

如何查询此表,按年份排序(dt_appointment)? Year()是一个有效的sybase T-SQL函数。我试过包括一个计算列,例如:

dtYear = Column(Integer, name='Year(dt_appointment)', quote=False)

这不适用于查询:

session.Query(Appointment).order_by(Appointment.dtYear)

1 个答案:

答案 0 :(得分:5)

您应该可以使用Function expression

from sqlalchemy.sql import func
qry = session.query(Appointment).order_by(func.DATE(Appointment.dt))

但请注意,如果您经常使用这些类型的过滤器,建议您在表格中创建一个仅包含yeardt_appointment的计算列并创建{{1在这个专栏上。这将大大提高您的查询/过滤器的速度。 [我不了解Sybase,所以我假设在Sybase中可以创建一个index列,就像在computed persistent]中一样。