本文介绍了SQLAlchemy 中的 REGEXP_LIKE的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有谁知道我如何在 SQLAlchemy 中使用 REGEXP_LIKE 的等价物?例如,我希望能够执行以下操作:
Any one knows how could I use the equivalent of REGEXP_LIKE in SQLAlchemy? For example I'd like to be able to do something like:
sa.Session.query(sa.Table).filter(sa.Table.field.like(regex-to match))
感谢您的帮助!
推荐答案
它应该(我无法访问 Oracle)像这样工作:
It should (I have no access to Oracle) work like this:
sa.Session.query(sa.Table) \
.filter(sa.func.REGEXP_LIKE(sa.Table.c.column, '[[:digit:]]'))
这篇关于SQLAlchemy 中的 REGEXP_LIKE的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!