Hi, id like to know if any one has found a work around to use limits when updating a query set.
I'm trying to lock a number of the oldest rows in a table. update job set lock='lockid' where lock ='' order by created limit 10; Ideally id like to do something like this: Job.objects.filter(lock='').order_by('created').update(lock='lockid') [0:10] Now i'm just using raw sql to lock which is fine but it would be great if there was a way to do it with the orm. Appreciate any advice Thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.