在SQLAlchemy查询中使用SQL函数,如substr(X,Y,Z)

时间:2016-08-04 19:02:35

标签: python sqlite sqlalchemy sql-function

我无法弄清楚如何将SQLite的函数(如substr(X, Y, Z))与SQLAlchemy的查询表达式语法一起使用。我知道我可以使用原始查询,但这会使重用where子句变得更加困难。这是我的用例:

我有一个文件头的表(或模型类),我查询它以识别和列出某些类型的文件。

class Blob(Base):
    __tablename__ = 'blob'

    _id = Column('_id', INTEGER, primary_key=True)
    size = Column('size', INTEGER)
    hash = Column('hash', TEXT)
    header = Column('header', BLOB)
    meta = Column('meta', BLOB)

例如,要识别Exif图像,我可以使用此原始查询:

select * from blob where substr(header,7,4) = X'45786966'

X'45786966'只是ASCII编码的字符串BLOB的SQLite Exif字面值。实际上,where子句更复杂,我想重新使用它们作为连接的过滤条件,大致如下:

# define once at module level
exif_conditions = [functions.substr(Blob.header, 7, 4) == b'Exif']

# reuse for arbitrary queries
session.query(Blob.hash).filter(*exif_conditions)
session.query(...).join(...).options(...).filter(condition, *exif_conditions)

有没有办法用SQLAlchemy实现这个目标?

1 个答案:

答案 0 :(得分:4)

确定。这太简单了。

from sqlalchemy.sql import func
exif_conditions = [func.substr(Blob.header, 7, 4) == b'Exif']