gpt4 book ai didi

python - 如何使用 peewee 在 where 条件之后加入

转载 作者:行者123 更新时间:2023-11-29 02:17:00 27 4
gpt4 key购买 nike

是否有可能在这样的条件之后进行连接

query = (AppCompany
.select(AppCompany,User)
.join(User)
.where(AppCompany.status_id==request.args.status_id)
)

if request.args.industry:
query = query.switch(AppCompany).join(AppCompanyToIndustry)
query = query.where(AppCompanyToIndustry.industry_id==request.args.industry)

我累了,但它抛出了这个错误:“ValueError:必须指定连接条件。”

最佳答案

提供一个连接条件

query = query.switch(AppCompany)
.join(AppCompanyToIndustry)
.where(AppCompanyID == AppCompanyToIndustryID)

在这里,您应该将 AppCompanyIDAppCompanyToIndustryID 替换为适当的列

关于python - 如何使用 peewee 在 where 条件之后加入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38009219/

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