Full outer join in django

Posted by Ber on Stack Overflow See other posts from Stack Overflow or by Ber
Published on 2008-10-31T09:46:55Z Indexed on 2010/03/12 1:17 UTC
Read the original article Hit count: 349

Filed under:
|
|

How can I create a query for a full outer join across a M2M relationchip using the django QuerySet API?

It that is not supported, some hint about creating my own manager to do this would be welcome.

Edited to add: @S.Lott: Thanks for the enlightenment. The need for the OUTER JOIN comes from the application. It has to generate a report showing the data entered, even if it still incomplete. I was not aware of the fact that the result would be a new class/model. Your hints will help me quite a bit.

© Stack Overflow or respective owner

Related posts about django

Related posts about sql