This seems like the kind of thing Django makes simple, wondering if anyone has any experience with it.

I have a table of bands, some of whom are called 'The Geeks' (for example). I want them to appear alphabetically under 'G'.

I know I can do some fancy SQL to rewrite them on the fly and sort that way, but does Django offer anything built-in so I can keep my nice Band.objects.all() syntax and still filter on a custom sort?

I know I could change my data to include a has_prefix field or something and store the bandname as 'Geeks, The' or whatever, but I'd rather not touch the data itself if possible.

Any tips?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You can't do it with order_by()

You can

  1. Do some fancy SQL. If you want to keep it nice and short, you should write a custom model manager.
  2. Do sorting at Python-level, not SQL-level
  3. Store "sort title" and "display title" separately.
link|improve this answer
One thing just occurred to me - could I put a function on the model object that returns the 'Band, The' style name, and sort on that? – Matt Andrews May 19 '11 at 11:58
1  
order_by is executed at DB level, your DB knows nothing about python functions. But of course you can sort the list at python-level (#2 in my answer). – DrTyrsa May 19 '11 at 12:01
feedback

Your Answer

 
or
required, but never shown

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