使用sqlalchemy.sql.functions.char_length作为过滤条件

发布于 2024-11-19 03:45:07 字数 436 浏览 1 评论 0原文

我正在使用 Elixir 和 sqla 0.6,并且我正在尝试查询我的模型:

class Document(Entity): 
    using_options(shortnames=True, order_by='doc_date')
    doc_number = Field(Unicode(20),index=True)

...对于具有给定长度的数字的文档。

我正在考虑这样的事情:

Document.query.filter(Document.doc_number.char_lenght()==5).all()

...但显然, char_length 虽然存在于 sqlalchemy.sql.functions 中,但在这里不起作用。如何使其在声明性习惯用法中工作,而不诉诸直接查询?

I'm using Elixir and sqla 0.6, and I'm trying to query my model:

class Document(Entity): 
    using_options(shortnames=True, order_by='doc_date')
    doc_number = Field(Unicode(20),index=True)

...for Documents having numbers of a given length.

I was thinking about something like this:

Document.query.filter(Document.doc_number.char_lenght()==5).all()

...but apparently, char_length, while present in sqlalchemy.sql.functions, is not working here. How can I make it work within declarative idiom, without resorting to direct queries?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

煮茶煮酒煮时光 2024-11-26 03:45:07

好的,找到答案了:

from sqlalchemy import func
Document.query.filter(func.char_length(Document.doc_number)==5).all()

Ok, found an answer:

from sqlalchemy import func
Document.query.filter(func.char_length(Document.doc_number)==5).all()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文