Using google app engine and Django non-rel, I'm querying a list of movies and want to order them alphabetically.

movies = Movie.objects.all().order_by("title")

The problem is for any titles that do not start with an uppercase character is not following the same sort pattern.

So if queried these movies and returned them sorted then "iRobot" would not be between Batman and Zoolander:

  1. Armageddon
  2. Batman
  3. Zoolander
  4. iRobot

How do I get them to do a case-insensitive order_by?

Thanks

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You need to denormalize: store a separate property that contains a lower-case version of the title, and sort on that.

link|improve this answer
Denormalization is the answer to 80% of the "how do I do X on the GAE data store" questions. – Ranieri Oct 26 '10 at 21:17
Not the solution I was hoping for, but thank you for the answer – adam Oct 27 '10 at 0:49
1  
Perhaps not, but it's the only indexable solution in any DBMS. :) – Nick Johnson Oct 27 '10 at 10:05
feedback

Your Answer

 
or
required, but never shown

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