I have a QuerySet, and I would like to order them numerically. The issue is the data is stored as a String. I know how to do this in SQL or a list, but not a query set. Is this even possible?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You'll probably need to fallback to Django's extra function. Perhaps:

ordered = (qs.extra(select={"order_column": "CONVERT(column, INTEGER)"})
           .order_by("order_column"))

(Assuming you're using MySQL)

link|improve this answer
Thanks Bradley! This looks like it'll work, I'll check it out – Parker Jul 11 '11 at 4:50
1  
It's the one you're creating, which you subsequent order by. – bradley.ayers Jul 11 '11 at 5:21
feedback

Your Answer

 
or
required, but never shown

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