本文介绍了如何在sqlalchemy ORM查询中传递不喜欢的运算符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个查询:
MyModel.query.filter(Mymodel.name.contains('a_string'))
我需要执行相同的查询,但要使用否定符(不喜欢运算符),但是在 SQLAlchemy文档.
I need to do the same query but with the negation (a not like operator) but didn't find any operator matching my need in the SQLAlchemy documentation.
有没有办法使用SQLAlchemy的sql部分呢?
Is there any way to do it without using the sql part of SQLAlchemy???
推荐答案
只需取消过滤器:
MyModel.query.filter(sqlalchemy.not_(Mymodel.name.contains('a_string')))
这篇关于如何在sqlalchemy ORM查询中传递不喜欢的运算符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!