On Jan 17, 5:03 am, Ivan Sagalaev <[EMAIL PROTECTED]> wrote:
> Ah... You mean "all tags that have relation to any blog". This is it:
>
>      Tag.objects.filter(blog__id__isnull=False)

Perfect! Yeah, "all tags that have relation to any blog" -- that's what
I was trying to say!

Worked like a charm: http://lab-zine.com/blog/

> 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 :-)

Thanks so much, and thanks for explaining why that works. Especially
the "reference to 'blog' effectively joins Tags and Blogs" -- that
helps me understand what's happening.

Nate


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