On 10/17/06, Michael Radziej <m
...@noris.de> wrote:
> I guess this is currently under a freeze. I just wanted to bring
> it up for discussion. If there's serious interest, I can flesh it
> out (docs, testcases) later when the winter^H^H^H^H^H^H^H freeze
> is over.
You can already specify the join type using Q objects.
When you invoke get_sql on a Q object, it returns a tuple, the first
argument of which is 'joins', a sorted dictionary that describes the
joined table name, join type, and join condition.
It's not a heavily advertised feature, so there isn't much
documentation; if you want an example, line 840 of query.py shows the
addition of a join to the sql results.
Using this approach also means that you can keep using Django query
syntax for most of your query, rather than just inserting a block of
SQL.
Yours,
Russ Magee