gpt4 book ai didi

django - 使用F()在更新操作中反转 bool 字段

转载 作者:行者123 更新时间:2023-12-03 12:01:54 24 4
gpt4 key购买 nike

我需要通过update操作来还原boolean值。

我试过了:

Item.objects.filter(serial__in=license_ids).update(renewable=not F('renewable'))

但这是行不通的。我确保未将字段设置为 null

最佳答案

这里不支持不支持。您将不得不使用Case When

from django.db.models import Case, Value, When

Item.objects.filter(serial__in=license_ids
).update(renewable=Case(
When(renewable=True, then=Value(False)),
default=Value(True))
)
)

关于django - 使用F()在更新操作中反转 bool 字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40402120/

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