vote up 1 vote down star

In my quest to understand queries to Django models I've been trying to get the last 3 added valid Avatar models with a query like:

newUserAv = Avatar.objects.filter(valid=True).order_by("date")[:3]

However this gives me the first three avatars added ordered by date. I'm sure this is so simple but I've had trouble finding it in the Django docs, how do I selected the LAST three avatar objects instead of the first?

flag

2 Answers

vote up 6 vote down check

Put a hyphen before the field name.

.order_by('-date')
link|flag
1  
Its annoyingly easy when you know how - thanks you :) – Tristan Sep 24 at 9:43
Documentation: docs.djangoproject.com/en/dev/… – S.Lott Sep 24 at 9:48
vote up 0 vote down

Reverse order with .reverse()

newUserAv = Avatar.objects.filter(valid=True).order_by("date").reverse()[:3]
link|flag
That works with lists, but explicitly not with querysets - try it and you get the message "Negative indexing is not supported". – Daniel Roseman Sep 24 at 9:48
@daniel: ok, I reverted my answer – tuergeist Sep 24 at 9:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.