gpt4 book ai didi

python - Sqlalchemy complex NOT IN another table query

转载 作者:太空狗 更新时间:2023-10-30 02:08:19 24 4
gpt4 key购买 nike

首先,我很抱歉,我的SQL知识水平还很低。基本上问题如下:我有两个不同的表,它们之间没有直接 关系,但它们共享两列:storm_id 和 userid。

基本上,我想查询来自 storm_id 的所有帖子,这些帖子不是来自被禁止的用户和一些额外的过滤器。

模型如下:

发布

class Post(db.Model):
id = db.Column(db.Integer, primary_key = True)
...
userid = db.Column(db.String(100))
...
storm_id = db.Column(db.Integer, db.ForeignKey('storm.id'))

被禁止的用户

class Banneduser(db.Model):
id = db.Column(db.Integer, primary_key=True)
sn = db.Column(db.String(60))
userid = db.Column(db.String(100))
name = db.Column(db.String(60))
storm_id = db.Column(db.Integer, db.ForeignKey('storm.id'))

Post 和 Banneduser 都是另一个表 (Storm) 的 child 。这是我要输出的查询。如您所见,我正在尝试过滤:

  • 已验证的帖子
  • 降序
  • 有限制(我把它和查询分开,因为 elif 有其他过滤器)

    # we query banned users id
    bannedusers = db.session.query(Banneduser.userid)

    # we do the query except the limit, as in the if..elif there are more filtering queries
    joined = db.session.query(Post, Banneduser)\
    .filter(Post.storm_id==stormid)\
    .filter(Post.verified==True)\
    # here comes the trouble
    .filter(~Post.userid.in_(bannedusers))\
    .order_by(Post.timenow.desc())\

    try:
    if contentsettings.filterby == 'all':
    posts = joined.limit(contentsettings.maxposts)
    print((posts.all()))
    # i am not sure if this is pythonic
    posts = [item[0] for item in posts]

    return render_template("stream.html", storm=storm, wall=posts)
    elif ... other queries

我有两个问题,一个是基本问题,一个是潜在问题:

1/.filter(~Post.userid.in_(bannedusers))\每次都给出一个输出 post.userid 不在 bannedusers 中,所以我得到 N 个重复的帖子。我尝试用 distinct 过滤它,但它不起作用

2/潜在问题:我不确定我的方法是否正确(ddbb 模型结构/关系加上查询)

最佳答案

使用 SQL EXISTS .您的查询应该是这样的:

db.session.query(Post)\
.filter(Post.storm_id==stormid)\
.filter(Post.verified==True)\
.filter(~ exists().where(Banneduser.storm_id==Post.storm_id))\
.order_by(Post.timenow.desc())

关于python - Sqlalchemy complex NOT IN another table query,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44084301/

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