gpt4 book ai didi

python - SQLAlchemy - 过滤查询,排除许多 child 之一符合条件的 parent

转载 作者:太空宇宙 更新时间:2023-11-03 14:18:49 24 4
gpt4 key购买 nike

我的 SQL 技能很差,所以我不知道如何形成我需要的查询。

我有两个具有一对多关系的数据库模型,定义如下:

class Parent(db.Model):
__tablename__ = 'parent'

id = db.Column(db.Integer, primary_key = True)

children = db.relationship('Child',
backref = 'parent',
lazy = 'joined')

class Child(db.Model):
__tablename__ = 'child'

id = db.Column(db.Integer, primary_key = True)
parent_id = db.Column(db.Integer, db.ForeignKey('parent.id'))

value = db.Column(db.String(140))

我希望能够形成一个查询,该查询将返回满足三个条件的所有 parent :

1:有一个或多个 child ,其值包含'value1'

2:有一个或多个 child ,其值包含'value2'

3:没有 child 的值包含'value3'或'value4'

对于此示例数据:

Parents:
id |
1 |
2 |
3 |
4 |

Children:
id | parent_id | value
1 | 1 | 'value1'
2 | 1 | 'value2'
3 | 1 | 'value3'
4 | 1 | 'value5'

5 | 2 | 'value1'
6 | 2 | 'value2'
7 | 2 | 'value4'
8 | 2 | 'value5'

9 | 3 | 'value1'
10 | 3 | 'value2'
11 | 3 | 'value5'
12 | 3 | 'value6'

13 | 4 | 'value1'
14 | 4 | 'value7'

我只想返回 Parent #3。

据我所知:

from sqlalchemy import not_, and_

conditions = []

conditions.append(Parent.children.any(Child.value.ilike('%'+value1+'%'))
conditions.append(Parent.children.any(Child.value.ilike('%'+value2+'%'))

conditions.append(Parent.children.any(not_(Child.value.ilike('%'+value3+'%')))

condition = and_(*conditions)

q = db.session.query(Parent).filter(condition)

前两个条件工作正常。将关系设置为 lazy='join' 允许我对关系调用 .any(),并获得我想要的结果。

然而,条件 3 并没有按原样运行。它返回的是有一个 child 不符合标准的 parent ,而不是所有 child 都不符合标准的 parent 。

我已经弄乱了外连接和其他执行此查询的方法,但我意识到我对 SQL 的了解还不够,无法确定前进的方向。谁能指出我正确的方向?只知道我需要生成的 SQL 将是朝着正确方向迈出的一大步,但让它在 SQLAlchemy 中运行将是非常棒的。

最佳答案

下面的查询应该可以做到:

q = (session.query(Parent)
.filter(Parent.children.any(Child.value.ilike('%{}%'.format(value1))))
.filter(Parent.children.any(Child.value.ilike('%{}%'.format(value2))))
.filter(~Parent.children.any(
db.or_(Child.value.ilike('%{}%'.format(value3)),
Child.value.ilike('%{}%'.format(value4)),
)
))
)

几点:

  • 您需要条件 3 的
  • 您还应该使用 NOT has any children...(这是使用 ~ 完成的)或者您在里面的 not .

条件 3 的过滤器应该是: parent 没有任何不满足 bla-bla 的 child ,而您的代码暗示 parent 至少有一个 child 不满足bla-bla.

关于python - SQLAlchemy - 过滤查询,排除许多 child 之一符合条件的 parent ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30648498/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com