小编典典

如何在 Django 中使用单个查询集选择记录并更新它?

all

如何在相同的情况下运行updateandselect语句,queryset而不必执行两个查询: - 一个选择对象 - 一个更新对象

SQL 中的等价物类似于:

update my_table set field_1 = 'some value' where pk_field = some_value

阅读 97

收藏
2022-07-16

共1个答案

小编典典

使用查询集对象update方法

MyModel.objects.filter(pk=some_value).update(field1='some value')
2022-07-16