On 08/03/07, johnny <[EMAIL PROTECTED]> wrote:
>
> class City(models.Model):
>     # ...
>
> class Person(models.Model):
>     # ...
>     hometown = models.ForeignKey(City)
>
> class Book(models.Model):
>     # ...
>     author = models.ForeignKey(Person)
>     edited = models.ForeignKey(Person)
>
> If do this: Book.objects.select_related().get(id=4), Would it get one
> book object, the 2 person and 2 city object, like below?
>
> book: -person-city (author who created it),
>           -person-city (editor who edited it)
>
> Thank you
>
Yes, select_related() will automatically join the related tables and
select their values for you in 1 query.

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to