I need to implement this query using django orm:
update table set field=field+1 where id=id
I don\'t whant to use this:
o = mod
Both the previous answerers have part of the solution: you should use update in conjunction with F():
update
F()
Model.objects.filter(id=id).update(field=F('field') +1))
Note this does an in-place UPDATE without any need for SELECT at all.