在 Orator ORM 中如何构造多个 LIKE 查询?
如何在 python 的 orator orm 中构造多个 like 查询
orator orm 中没有提供直接支持多个 like 查询的方法。但是,我们可以通过多次赋值的方法来实现。
and 逻辑操作
如果需要多个关键词满足 and 条件,可以使用以下代码:
# 实现 and 逻辑 search = ['%word1%', '%word2%', '%word3%', ...] info = db.table('full_text') for s in search: info = info.where('title', 'like', s) result = info.get()
or 逻辑操作
如果需要多个关键词满足 or 条件,可以使用以下代码:
# 实现 OR 逻辑 search = ['%word1%', '%word2%', '%word3%', ...] info = DB.table('full_text') for s in search: if search.index(s) == 0: info = info.where('title', 'like', s) else: info = info.or_where('title', 'like', s) result = info.get()
虽然 orator orm 在构造多个 like 查询方面不是特别方便,但使用上述方法可以实现类似的效果。
以上就是在 Orator ORM 中如何构造多个 LIKE 查询?的详细内容,更多请关注其它相关文章!