Hi Greg, I think the documentation needs an update, but you need to make sure that the query includes the column that you want to order by... in Django terms the easiest way is to use the select_related method. So you should find that your view query works if you modify it slightly to:
Entry.objects.select_related().order_by('blogs_blog.name', 'headline') I had a similar issue and found the solution here: http://groups.google.com/group/django-users/browse_thread/thread/31cf46e54e8bcaf6/5cada68e18212efb -Michael On Aug 6, 6:27 am, Greg <[EMAIL PROTECTED]> wrote: > I'm running through some djagno API examples and I'm having a problem > with how to order by a field in a differenttable. Here is what my > models: > > class Blog(models.Model): > name = models.CharField(maxlength=100) > tagline = models.TextField() > > def __unicode__(self): > return self.name > > class Admin: > pass > > class Author(models.Model): > name = models.CharField(maxlength=50) > email = models.EmailField() > > def __unicode__(self): > return self.name > > class Admin: > pass > > class Entry(models.Model): > blog = models.ForeignKey(Blog) > headline = models.CharField(maxlength=255) > body_text = models.TextField() > pub_date = models.DateTimeField() > authors = models.ManyToManyField(Author) > > def __unicode__(self): > return self.headline > > class Admin: > pass > > ///////// > > The documentation says that this will work: > Entry.objects.order_by('blogs_blog.name', 'headline') > > However, when I run the above command I get the following error: > > OperationalError: no such column: blogs_blog.name > > //////////////// > > I don't understand blogs_blog.name? Thanks for your help --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---