gpt4 book ai didi

python - Django,在查询中使用 ANY

转载 作者:行者123 更新时间:2023-11-29 12:38:06 24 4
gpt4 key购买 nike

基本上我必须这样做:

WHERE NOT (`video_video`.`id` = **ANY** (SELECT `userPreferences_history`.`video_id` FROM `userPreferences_history`))

但使用:

.exclude(id=history_list)

我刚刚得到:

WHERE NOT (`video_video`.`id` = (SELECT `userPreferences_history`.`video_id` FROM `userPreferences_history`))

当我从子查询中获得超过 1 个结果时,会导致“子查询返回超过 1 行”。

我该怎么做?

已修复,如下所示:Django object multiple exclude()

最佳答案

假设您的 history_list 是正确的子查询,.exclude(id__in=history_list)

关于python - Django,在查询中使用 ANY,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26472436/

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