我想在 django 中使用以下查询。
update notes from Testcase where (testid==givenid);
我尝试了这个但不幸的是它没有工作。我怎么能在django中写这个?
Testcase.objects.filter(id=givenid).upadte(notes)
答案 0 :(得分:0)
tc = Testcase.objects.get(id=givenid)
tc.some_field = "some_value"
tc.save()