I want to run a query like this:

select * from bbs_article a, bbs_article_tags a2, bbs_tag t where t.id
= a2.tag_id and a.id = a2.article_id order by (case when t.name =
'notice' then '' else t.name end)

which has a custom ordering rule.

As far as I know, Django model currently does not support such custom
orderings, but only field-based native orderings.

How do I use the above sql in most clear way (like using typical model
query with manually changed order clause), or is there any workaround
to do the same jobs?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@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
-~----------~----~----~----~------~----~------~--~---

Reply via email to