natebeaty wrote:
SELECT t.value FROM `blog_blog_tags` b LEFT JOIN `tags_tag` t ON
(b.tag_id=t.id)
but that feels like cheating.. besides, I'd like to better understand
the ORM.
Ah... You mean "all tags that have relation to any blog". This is it:
Tag.objects.filter(blog__id__isnull=False)
This is less hackish than row SQL :-). Reference to 'blog' effectively
joins Tags and Blogs. id__isnull=False is a bogus condition that is
always true and is needed only to satisfy syntax. There is no such
explicit thing as "just join" in Django's ORM. Though given that I'm
writing this a second time for the last month may be it should :-)
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---